比较数字大小的两种方法Java


第一种方法比较简单容易理解

package Si;

import java.util.Scanner;

public class kao {
    public static void main(String[] args) {
        System.out.println("输入三个数字");
        Scanner sc= new Scanner(System.in);
        System.out.println("第一个");
        int a= sc.nextInt();
        System.out.println("第二个");
        int b=sc.nextInt();
        System.out.println("第三个");
        int c=sc.nextInt();
        if(a>b&&a>c) {
            System.out.println("最大"+a);
        }else if(b>a&&b>c) {
            System.out.println("最大"+b);
        }else if(c>a&&c>b) {
            System.out.println("最大"+c);
        }
        if(a<b&&a<c) {
            System.out.println("最小"+a);
        }else if(b<a&&b<c) {
            System.out.println("最小"+b);
        }else if(c<a&&c<b) {
            System.out.println("最小"+c);
        }
    }
}

第二种用数组来进行比较类似于打擂台

package Si;

import java.util.Scanner;

public class kao1 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("输入数字");
//        数组
        int[] cc = new int[3];
        for (int q = 0; q < cc.length; q++) {
            System.out.println("输入" + (q + 1) + "个数字");
            cc[q] = sc.nextInt();

        }
//        最大值轮流比较
        int max = cc[0];
        for (int a = 0; a < cc.length; a++) {
            if (cc[a] > max) {
                max = cc[a];
            }

        }
        System.out.println("最大" + max);
//        最小值
        int min = cc[0];
        for (int a = 0; a > cc.length; a++) {
            if (cc[a] < min) {
                min = cc[a];
            }

        }
        System.out.println("最小" + min);

    }
}

 

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/275177.html

(0)
上一篇 2022年7月18日
下一篇 2022年7月18日

相关推荐

发表回复

登录后才能评论