代码
#include <stdio.h>
int main()
{
int a,b,c,temp,max;
printf("请输入三个整数:");
scanf("%d,%d,%d",&a,&b,&c);
temp=(a>b)?a:b; /*将 a 和 b 中的大者存入 temp中*/
max=(temp>c)?temp:c; /*将 a 和 b 中的大者与 c 比较,取最大者*/
printf("%d\n",max);
return 0;
}
#include <stdio.h>
int main()
{
int a,b,c,temp,max;
printf("请输入三个整数:");
scanf("%d,%d,%d",&a,&b,&c);
temp=(a>b)?a:b; /*将 a 和 b 中的大者存入 temp中*/
max=(temp>c)?temp:c; /*将 a 和 b 中的大者与 c 比较,取最大者*/
printf("%d\n",max);
return 0;
}