java if_else 实现三个数最大值和分段函数

import java.util.Scanner;

public class Hello {
    public static void main(String[] args) {
    
        Scanner in = new Scanner(System.in);
        // else 与 最近的 if 匹配
        int x = in.nextInt();
        int y = in.nextInt();
        int z = in.nextInt();
        int max;
        if (x > y) {
            if (x > z)
                max = x;
            else
                max = z;
        }else {
            if(y > z)
                max = y;
            else
                max = z;
        }
        System.out.println(max);
    }
}
import java.util.Scanner;

public class Hello {
    public static void main(String[] args) {
    // 级联
        Scanner in = new Scanner(System.in);
        // else 与 最近的 if 匹配
        int x = in.nextInt();
        int f;
        if (x < 0)
            f = -1;
        else if (x == 0)
            f = 0;
        else
            f = 2 * x;
        System.out.println(f);
    }
}

 

上一篇:[转] C#操作EXCEL,生成图表的全面应用


下一篇:利用Java对多个整数进行排序(升序和降序)操作