看了10分钟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);
}
这里面的 %lf 还有其它程序 %d 表示什么意思?
顺便乱写的?