- import java.util.Scanner;
- public class Ch13 {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int answer;
- System.out.println("這是心理測驗:");
- System.out.println("下列Youtuber中,你最喜歡哪位?");
- System.out.println("(1) 菜頭貴 (2) 小吳 (3) 館長 (4) 小孩子才做決定,我全都要!!!");
- System.out.println("請選擇: ");
- answer=s.nextInt();
- switch(answer)
- {
- case 1:
- System.out.println("要記得看一片少一片喔~ 菜頭貴上小學就要停更了");
- break;
- case 2:
- System.out.println("要互相傷害了嗎?");
- break;
- case 3:
- System.out.println("那你有搶到三公分雞排嗎?");
- break;
- case 4:
- System.out.println("嗨~青少年~");
- break;
- default:
- System.out.println("可以認真選嗎?");
- }
-
- }
- }
複製代碼 |