不能用作函数

不能用作函数
#include <iostream>
using namespace std;
int main()
{
        int bus1,bus2,total;
        total=(bus1+bus2)(5*14);
        cout<<"fair is"<<total;
        return 0;
}

我使用了这个命令。然后使用下面的命令进行编译,

g++ -otravel travel.cpp

但之后它说,

travel.cpp:在函数“int main()”中:

travel.cpp:6:24:错误:'(bus1 + bus2)'不能用作函数

帮我看看我的代码有什么错误

答案1

听起来像是家庭作业...但是:

#include <iostream>
using namespace std;
int main()
{
        int bus1,bus2,total=0;
        total=(bus1+bus2)*(5*14);
        cout<<"fair is: "<<total<<endl;
        return 0;
}

相关内容