Dev-C++的问题
我编译以下一段源代码时 为什么编译不出来 #include
#include
main()
{
double x,s;
printf("input number: \n");
scanf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n",x,s);
}
无反应 2:9 C:\Documents and Settings\Administrator\桌面\新建文件夹\1.c #include expects "FILENAME" or <FILENAME> 编译器那就出现这样的问题 不懂 为什么 没学过 - -