#include <iostream>
using namespace std;
int main()
{
// prototypes:
float add_and_div(float, float, float);
// variables:
float x, y, z;
float result;
cout << "Enter three floats: ";
cin >> x >> y >> z;
// continue the program here
add_and_div(x,y,z,);
当我尝试编译时,我收到以下错误消息:语法错误:')' 1 GT; 1&gt; Build FAILED。
答案 0 :(得分:3)
语法错误是:
add_and_div(x,y,z,);
需要这样:
add_and_div(x,y,z);
也就是说,您需要删除z
之后的逗号。