标签:最大的
#include <stdio.h>
main()
{
int a,b,c,max,temp;
printf("请输入三个数:\n");
scanf("%d,%d%,%d",&a,&b,&c);
temp=(a>b)?a:b;
max=(temp>c)?temp:c;
printf("三个数最大的是%d\n",max);
return 0;
}
本文出自 “乘法口诀” 博客,请务必保留此出处http://10706002.blog.51cto.com/10696002/1697238
标签:最大的
原文地址:http://10706002.blog.51cto.com/10696002/1697238