测试源程序可以正常编译,运行。可否具体说说哪里错了么?
如果是Linux下编译,需要连接Math库。
如果是Windows下,最好在头文件加上#include
在main函数最后加上system("pause");
#include
#include
int main (void)
{
float x;
x = sin(0.19199);
printf("%f\n",x);
}
没有错误,可以运行,在有些编译器里你可以加上system "pause";return 0;
sin函数的返回值是double型的,把float改成double。
我的编译器未报错。
能跑啊~~~能否放上错误提示