本帖最後由 李泳霖 於 2022-8-10 19:23 編輯
1.請設計一程式,使用者可輸入一個整數,判斷此整數為奇數或偶數。
2.程式執行時,畫面顯示【Please an integer:】,請使用者輸入一個整數。
3.重複執行兩次,如執行結果參考畫面,若為奇數,顯示【The number is odd.】:若為偶數,則顯示【The number is even.】
- import java.util.*;
- public class JPA02 {
- static Scanner input = new Scanner(System.in);
- public static void main(String[] args) {
- test();
- test();
- }
-
- static void test() {
- ...
- }
- }
複製代碼 |