c语言输入a,b,c三个整数,输出最大数.请问哪里有错

2025-04-05 15:10:34
推荐回答(1个)
回答1:

#include

void main()
{
int a,b,c,max;
printf("Enter a,b,c:");
scanf("%d %d %d",&a,&b,&c);
max = a;
if(max  if(max  printf("the max number is : %d\n",max);
}

scanf() 哪里 有问题

Enter a,b,c 哪些应该属输出

printf(“Enter a,b,c:”);

scanf("%d %d %d",&a,&b,&c);