主题:小菜求救
[em10]
请知道的 人看看这段简单的代码:
#includ <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("%3d %6d\n", fahr, celsius);
fahr = fahr + step;
}
}
这部分段代码在编译的时候总是出错(printf("%3d %6d\n", fahr, celsius);)
为什么??
请知道的 人看看这段简单的代码:
#includ <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("%3d %6d\n", fahr, celsius);
fahr = fahr + step;
}
}
这部分段代码在编译的时候总是出错(printf("%3d %6d\n", fahr, celsius);)
为什么??