欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

程序十五

程序员文章站 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);
    }
}
相关标签: java50道编程题

上一篇: 程序十二

下一篇: 程序十三