语法错误,我不知道如何纠正C ++代码。 (作业项目)

时间:2012-03-18 22:55:19

标签: c++

#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。

1 个答案:

答案 0 :(得分:3)

语法错误是:

  add_and_div(x,y,z,);

需要这样:

  add_and_div(x,y,z);

也就是说,您需要删除z之后的逗号。