来历不明的数字
#include<stdio.h>main()
{
int fahr,celsius;
int lower,upper,step;
printf("%35d \"F温度与C温度对比表\" \n");
lower=0;
upper=300;
step=20;
fahr=lower;
while(fahr<=upper)
{
celsius=5*(fahr-32)/9;
printf("%35d\t %3d\n",fahr,celsius);
fahr=fahr+step;
}
}
为什么运行后,输出的文字前面会有一串数字呢,请大侠们帮忙看看,谢谢了