// 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:“输出值”:未声明的标识符