菜鸟请教一个C语言问题。
#include<math.h>#include<stdio.h>
main()
{
double x,s;
printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n",x,s);
}
小弟按照教材上例子写的
为什么运行不起呢?
我用的是 Turbo C。
他的错误原因是
temp.c:
错误 temp.c 7: 表达式语法错 在函数
错误 temp.c 11: 未定义的符号'x' 在函数
错误 temp.c 13: 未定义的符号's' 在函数
*** 3 错误在编译 ***
是怎么回事呢。