本帖最後由 李泳霖 於 2022-8-10 12:13 編輯
(1)請設計一程式,使用者可輸入兩個整數,並且比較兩個整數大小
(2)程式執行時,畫面顯示【Input:】,請使用者輸入兩組整數,各組整數分別輸入兩個數字,數字中間以空格鍵間隔。
(3)重複執行兩次,依輸入的兩個整數比較大小,顯示如執行結果參考畫面。
- import java.util.*;
- class JPD02 {
- static Scanner keyboard = new Scanner(System.in);
- public static void main(String[] args) {
- test();
- test();
- }
-
- public static void test() {
- ...
- }
- }
複製代碼 |