程序十五
程序员文章站
2022-07-07 23:18:44
...
程序十五
题目:输入三个整数a,b,c,请把这三个数由小到大输出。
本题是通过数值替换的方法,将a替换成最小的,然后是b,c。
最后输出结果
import java.util.*;
public class test15 {
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
System.out.println("输入三个数:");
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int temp=0;
if (a>b) {
temp=a;
a=b;
b=temp;
}
if (a>c) {
temp=a;
a=c;
c=temp;
}
if (b>c) {
temp=b;
b=c;
c=temp;
}
System.out.println("这三个数从小到大排列:"+a+" "+b+" "+c);
}
}