VC++6.0 程序compile通过,build有1个错误,找不出来啊。

2024-11-15 20:23:12
推荐回答(3个)
回答(1):

你好!

    scanf("%d",&t);   // 去掉 \n


修改后的代码

#include 
void main()
{
int t,a,b,c;
printf("t=");
scanf("%d",&t);   // 去掉 \n 
a=t/100;
b=(t-100*a)/10;
c=t-100*a-10*b;
printf("%d%d%d",c,b,a);
}

回答(2):

scanf("%d",&t);

把那个\n去掉OK

回答(3):

scanf("%d\n",&t);应该把\n去掉,scanf不应该加\n。