???
#inclde<stdio.h>#inclde<manth.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,);
}哪里出问题啦 单词拼写啊,是include和math。。。
还有最后一个printf你检测一下 ,的问题 elvo 发表于 2014-8-11 15:55
单词拼写啊,是include和math。。。
还有最后一个printf你检测一下 ,的问题
谢啦 我再试一下 本帖最后由 yvqiang 于 2014-8-11 18:52 编辑
话说这个格式也太那个啥了吧,我帮你写一遍:
#include<stdio.h>
#include<math.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);
system("pause");
}
http://bbs.fishc.com/data/attachment/album/201408/11/184231v30ouaa00gucbg0e.jpg
页:
[1]