Java经典编程题50道之十五
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之十五相关的知识,希望对你有一定的参考价值。
输入三个整数x,y,z,请把这三个数由小到大输出。
public class Example15 {
public static void main(String[] args) {
sort(15, 10, 5);
}
public static void sort(int x, int y, int z) {
if (x > y) {
int t = x;
x = y;
y = t;
}
if (x > z) {
int t = x;
x = z;
z = t;
}
if (y > z) {
int t = y;
y = z;
z = t;
}
System.out.println("三个数字由小到大排列为: " + x + " " + y + " " + z);
}
}
以上是关于Java经典编程题50道之十五的主要内容,如果未能解决你的问题,请参考以下文章