鍵盤錄入兩個數據,返回兩個數中的較大值: 結果: ...
鍵盤錄入兩個數據,返回兩個數中的較大值:
import java.util.Scanner; class Hello2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("請輸入第一個整數"); int x = sc.nextInt(); System.out.println("請輸入第二個整數"); int y = sc.nextInt(); int max = getMax(x,y); System.out.println("max = " + max); } public static int getMax(int a,int b) { int max = (a > b) ? a : b; return max; } }
結果: