鍵盤錄入三個數據並獲取最大值

package com.itheima;

import java.sql.SQLOutput;
import java.util.Scanner;

/*
鍵盤錄入三個數據並獲取最大值
 */
public class TestScanner2 {
    public static void main(String[] args) {
        //定義一個對象
        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();
        //運用三目運算符判斷三個數中最大的值
        int temp=a>b?a:b;
        int max=temp>c?temp:c;
        System.out.println("三個數中最大的數爲:"+max);
    }
}
相關文章
相關標籤/搜索