解题思路:
注意事项:
参考代码:
import java.util.*; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); int a=in.nextInt(); int b=in.nextInt(); int c=in.nextInt(); if(a>b) {int t=a;a=b;b=t;} if(a>c) {int t=a;a=c;c=t;} if(b>c) {int t=b;b=c;c=t;} System.out.println(a+" "+b+" "+c); } }
0.0分
0 人评分
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)for循环浏览:1178 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
母牛的故事 (C语言代码)浏览:594 |
sizeof的大作用 (C语言代码)浏览:1138 |
剪刀石头布 (C++代码)浏览:1811 |
演讲大赛评分 (C语言代码)浏览:1696 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:567 |