Board logo

標題: [模擬考]TQC+ 210 [打印本頁]

作者: 王彥甯    時間: 2017-6-10 12:22     標題: [模擬考]TQC+ 210

完成TQC+ 210 題目
作者: 王彥甯    時間: 2017-6-10 12:23

  1. import java.util.*;
  2. class JPA02 {
  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 a = keyboard.nextLine();
  15.         switch(a)
  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 else");
  31.                 break;
  32.         }
  33.     }
  34. }
複製代碼

作者: 張健勳    時間: 2017-6-10 12:24

  1. import java.util.*;
  2. public class JPA02{
  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. public static void test() {
  12.   System.out.println("Input a character:");
  13.   String c = keyboard.nextLine();
  14.   switch(c.charAt(0)) {
  15.   case 'a':
  16.   case 'b':
  17.    System.out.println("You entered a or b");
  18.    break;
  19.   case 'x':
  20.    System.out.println("You entered x");
  21.    break;
  22.   case 'y':
  23.    System.out.println("You entered y");
  24.    break;
  25.   default:
  26.    System.out.println("You entered something else.");
  27.    break;                     
  28.   }
  29. }
  30. }
複製代碼





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