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

2024年11月15日 20:23
有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。