int用法 C语言
#include<stdio.h>main(){intfahr,celsius;intlower,upper,step;lower=0;upper=300;step=20...
#include <stdio.h>
main()
{
int fahr, celsius;
int lower, upper, step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= upper)
{
celsius = 5 * (fahr-32) / 9;
printf("%d\t%d\n", fahr , celsius);
fahr = fahr + step;
}
}
上述程序中的两个int为何不能合并
即int fahr, celsius, int lower, upper, step;
当我运行改变后的程序就无法成功
#include <stdio.h>
main()
{
int fahr, celsius, lower, upper, step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= upper)
{
celsius = 5 * (fahr-32) / 9;
printf("%d\t%d\n", fahr , celsius);
fahr = fahr + step;
}
}
我是C语言新手,请高手解释详细一点
我是用vc++ 6.0的
运行后就无法停止
另外int fahr, celsius, int lower, upper, step是打错了
应以第二段程序为准即int fahr, celsius, lower, upper, step
好奇怪,昨天不行,今天行了。 展开
main()
{
int fahr, celsius;
int lower, upper, step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= upper)
{
celsius = 5 * (fahr-32) / 9;
printf("%d\t%d\n", fahr , celsius);
fahr = fahr + step;
}
}
上述程序中的两个int为何不能合并
即int fahr, celsius, int lower, upper, step;
当我运行改变后的程序就无法成功
#include <stdio.h>
main()
{
int fahr, celsius, lower, upper, step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= upper)
{
celsius = 5 * (fahr-32) / 9;
printf("%d\t%d\n", fahr , celsius);
fahr = fahr + step;
}
}
我是C语言新手,请高手解释详细一点
我是用vc++ 6.0的
运行后就无法停止
另外int fahr, celsius, int lower, upper, step是打错了
应以第二段程序为准即int fahr, celsius, lower, upper, step
好奇怪,昨天不行,今天行了。 展开
6个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询