为什么编译成功却没有输出结果
#include <stdio.h>void main()
{
int a=0,b=0;
printf("\n input two numbers:");
scanf("%d%d,&a,&b");
if(a>b)
{
printf("max=%d\n",a);
}
else
{
printf("max=%d\n",b);
}
}
运行结果:
input two numbers:3 4
Press any key to continue 认真一点
scanf("%d%d,&a,&b"); 人造人 发表于 2021-8-9 13:10
认真一点
scanf("%d%d,&a,&b");
谢谢谢谢,这个细节没有注意,下次一定不会错这种地方了{:10_266:} {:9_222:}
页:
[1]