#include<stdio.h>
#include<conio.h>
main()
{
int f,c;
printf("enter the value of celsius in integer (the value of f will be shown in integer neglecting the float value)");
scanf("%d,&c");
f=((9*c)/5)+32;
printf("f=%d,&f");
getch();
}
当我要在窗口 7 中编译并运行该程序时,然后在编译器中显示要输入数字的字符串,但是当我输入数字以找出它的 f 时,它会给出错误“celcius.exe 已停止工作”,然后显示“一个问题导致程序停止正常工作。窗口将关闭程序并在有解决方案时通知您。” 它将如何在 dev c++ 中处理。请帮我整理一下。我是c新手。谢谢你。