java中怎么比較三個(gè)數(shù)的最大值?
package jaz;
import java.util.Scanner;
public class max {
public static void main(String[] args) {
//可以監(jiān)聽(tīng)鍵盤(pán)數(shù)據(jù)的數(shù)據(jù)
Scanner sc = new Scanner(System.in);
System.out.println("輸入第一個(gè)整數(shù)");
int a = sc.nextInt();
System.out.println("輸入第二個(gè)整數(shù)");
int b = sc.nextInt();
System.out.println("輸入第三個(gè)整數(shù)");
int c = sc.nextInt();
System.out.println("輸出最大值");
int max = a>b?a:b;
max = max>c?max:c;
System.out.println("最大值為"+max);
1
2
3
4
5
6
7
8
9
10
11
12
13
}
}
輸入第一個(gè)整數(shù)
5
輸入第二個(gè)整數(shù)
6
輸入第三個(gè)整數(shù)
3
輸出最大值
最大值為6
————————————————
最后如果對(duì)于學(xué)習(xí)Java有任何問(wèn)題(學(xué)習(xí)方法,學(xué)習(xí)效率,如何就業(yè)),可以隨時(shí)來(lái)咨詢我,(教程/解答/交流群/學(xué)習(xí)方法/就業(yè)信息)等等 歡迎一起分享資源。