返回列表 發帖

TQC+ 203 判斷奇偶數

本帖最後由 李泳霖 於 2022-8-10 19:23 編輯

1.請設計一程式,使用者可輸入一個整數,判斷此整數為奇數或偶數。
2.程式執行時,畫面顯示【Please an integer:】,請使用者輸入一個整數。
3.重複執行兩次,如執行結果參考畫面,若為奇數,顯示【The number is odd.】:若為偶數,則顯示【The number is even.】
  1. import java.util.*;
  2. public class JPA02 {
  3.     static Scanner input = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.     }
  8.    
  9.     static void test() {
  10.         ...
  11.     }
  12. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表