注册 登录
编程论坛 C++教室

哪里错误了?我照书打的

chen1204019 发布于 2013-03-12 23:51, 510 次点击
//带默认 参数的函数举例
#include <iostream>
#include <iomanip>
using namespace std;

int getVolume(int length, int width=2, int height=3);

int main()
{
    const int X=10, Y=12, Z=15;
    cout<<"Some box data is";
    cout<<getVolume(X, Y, Z)<<endl;
    cout<<"Some box data is";
    cout<<getVolume(X, Y)<<endl;
    cout<<"Some box data is";
    cout<<getVolume(X)<<endl;
    return 0;
}

int getVolume(int length, int width/*=2*/, int height/*=3*/)
{
    cout<<setw(5)<<length<<setw((5)<<width<<setw(5)<<height<<'\t';
    return length * width * height;
}
2 回复
#2
lintaoyn2013-03-13 00:19
<<length<<setw((5)
多了一个左括号
#3
qunxingw2013-03-13 07:54
照书打易犯拼写不一致,不过在编译时都会提示。
1