Board logo

標題: 210-鍵盤字元判斷 [打印本頁]

作者: 許承鴻    時間: 2018-6-26 18:42     標題: 210-鍵盤字元判斷

import java.util.*;
class JPA02 {
    static Scanner keyboard = new Scanner(System.in);
    public static void main(String[] args) {
        test();
        test();
        test();
        test();
        test();
    }
  
    public static void test() {
        ...
    }
}
作者: 張閎鈞    時間: 2018-6-26 20:13

  1. import java.util.Scanner;


  2. public class JPA01 {
  3.            static Scanner keyboard = new Scanner(System.in);
  4.             public static void main(String[] args) {
  5.                 test();
  6.                 test();
  7.                 test();
  8.                 test();
  9.                 test();
  10.             }
  11.           
  12.             public static void test() {
  13.                 System.out.println("input a character:");
  14.                 String c=keyboard.next();
  15.                 switch(c)
  16.                 {
  17.                 case "a":
  18.                         System.out.println("You entered a or b");
  19.                         break;
  20.                 case "b":
  21.                         System.out.println("You entered a or b");
  22.                         break;
  23.                 case "x":
  24.                         System.out.println("You entered x");
  25.                         break;
  26.                 case "y":
  27.                         System.out.println("You entered y");
  28.                         break;
  29.                 default:
  30.                         System.out.println("You entered something");
  31.                 }
  32.             }
  33.         }
複製代碼

作者: 巫沛庭    時間: 2018-6-26 20:19

  1. package test;

  2. import java.util.Scanner;

  3. public class JPA02 {
  4. static Scanner keyboard = new Scanner(System.in);
  5.         public static void main(String[] args) {
  6.                
  7.                 // TODO 自動產生的方法 Stub
  8.                 test();        
  9.         test();
  10.         test();
  11.         test();
  12.         }
  13.          static void test() {
  14.                  System.out.println("Input a character : ");
  15.                  String num=keyboard.nextLine();
  16.                  switch(num)
  17.                  {
  18.                  case"a":
  19.                  case"b":
  20.                  System.out.println("You entered a or b");
  21.                  break;
  22.                  case"x":
  23.                  System.out.println("You entered x");
  24.                  break;
  25.                  case"y":
  26.                  System.out.println("You entered y");
  27.                  break;
  28.                  default:
  29.              System.out.println("You entered something else.")                 
  30.                  }
  31.             }
  32.          }
複製代碼

作者: 巫晉宇    時間: 2018-6-26 20:23

package jihgh;

import java.util.Scanner;

public class dbxdbff {
        static Scanner k = new Scanner(System.in);
   
        
        public static void main(String[] args) {
                // TODO 自動產生的方法 Stub

                test();        
        test();
        test();
        test();
       
        }
        private static void test() {
                System.out.print("Input a character");
                String x=k.nextLine();
                switch(x){
                case "a":
                case "b":       
                        System.out.println("You enter a or b");
                        break;
               
       
        case "x":       
                System.out.println("You enter x");
                break;
        case "y":       
                System.out.println("You enter y");
                break;
                }
               
               
               
               
       
               


                }}
作者: 張閎鈞    時間: 2018-7-3 20:28

  1. import java.util.*;
  2. public class hi87 {
  3.          static Scanner keyboard = new Scanner(System.in);

  4.     public static void main(String argv[]) {
  5.               System.out.println("Input:");
  6.               int a=keyboard.nextInt();
  7.               int b=0;
  8.         for (int i=1; i<=a; i++) {
  9.             b= b+i;                       
  10.         }
  11.         System.out.println("1+...+"+a+"="+b);
  12.     }
  13. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2