-2
// A simple program that computes the square root of a number
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main (int argc, char *argv[])
{
  if (argc < 2)
  {
    fprintf(stdout,"Usage: %s number\n",argv[0]);
    return 1;
  }

  double inputValue = atof(argv[1]);
  double outputValue = sqrt(inputValue);
  fprintf(stdout,"The square root of %g is %g\n",
          inputValue, outputValue);
  return 0;
}

我收到以下错误

错误 1 ​​错误 C2143:语法错误:缺少 ';' 在“类型”之前
错误 2 错误 C2143:语法错误:缺少“;” 在“类型”之前 错误 3 错误 C2065:“输入值”:未声明的标识符
错误 4 错误 C2065:“输出值”:未声明的标识符

4

1 回答 1

4

如果您将文件命名为 .cpp,它应该可以正常编译和运行。

但是,如果您将文件命名为 .c,它将失败。

原因是您需要在 C 函数的顶部声明所有变量;您不能在使用时声明它们。

于 2012-06-18T22:54:55.213 回答