解题思路:先比较两个数,得出比较大的,再跟第三个数比较。
参考代码:
#include<stdio.h>
int max(int n,int m,int i);
int main()
{
int a,b,c,x;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
x=max(a,b,c);
printf("%d",x);
return 0;
}
int max(int n,int m,int i)
{
int t;
if(n<m) t=m;
else t=n;
if(t>i) return t;
else return i;
}
0.0分
0 人评分
C语言训练-数字母 (C语言代码)浏览:610 |
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
求圆的面积 (C语言代码)浏览:1366 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:703 |
简单的for循环浏览:1498 |
校门外的树 (C语言代码)浏览:733 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:904 |
母牛的故事 (C语言代码)浏览:1046 |
1124题解浏览:630 |
整除问题 (C语言代码)浏览:594 |