为什么检测没错,运行不了。求各路大神指点。
#include<math.h>#include<stdio.h>
void main()
{
double x,s;
printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n", x,s);
}
2013-06-14 22:54
2013-06-15 14:07
2013-06-15 14:08
2013-06-15 14:10