输入三个数。输出最大的
1 回答
已采纳
Yexiaomo
TA贡献152条经验 获得超157个赞
#include <stdio.h> int main() { int a,b,c,max; scanf("%d%d%d",&a,&b,&c); max=a>b?a:b; max=max>c?max:c; printf("%d",max); return 0; }
基本思路: 两两比较, 将较大的数 保留, 最后输出
--------------------------------------------分-----割------线------------------------------------------------------------
望采纳~
啦啦~~~Imcainiao
- 1 回答
- 0 关注
- 1268 浏览
添加回答
举报
0/150
提交
取消