dev c++为什么不能自行运行结果

#include<stdio.h>#include<math.h>intmain(){doublex,s;printf("inputnumber:\n");scanf("... #include <stdio.h>
#include<math.h>

int main()
{
double x, s;

printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sin of %lf is %lf\n",x,s);
}
展开
 我来答
CSU菜刀
2012-02-08 · 超过22用户采纳过TA的回答
知道答主
回答量:60
采纳率:0%
帮助的人:63.4万
展开全部
有的你看不到而已,修改为以下试试
#include <stdio.h>
#include<math.h>
#include<stdlib.h>
int main()
{
double x, s;

printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sin of %lf is %lf\n",x,s);
system("pause");
return 0;
}
追问
可以了,谢谢啦!能不能告诉我原理呀?本人也是才刚刚接触c语言,至于dev c++也是不会用,所以有许多的东西都不懂,希望各位高手能赐教,万分感谢。
追答
dev c++运行程序时要有能使屏幕停留的表达式

也可以把system("pause");换成getchar();原理一样的,这样就不用预处理#include了
yongyongjijip
2012-02-09 · TA获得超过1488个赞
知道小有建树答主
回答量:1285
采纳率:0%
帮助的人:861万
展开全部
#include <stdio.h>
#include<math.h>
#include<stdlib.h>
int main()
{
double x, s;

printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sin of %lf is %lf\n",x,s);
system("pause"); //调用system函数执行命令pause,使程序暂停执行.
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式