- import java.util.Scanner;
- public class Ch01 {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int answer;
- System.out.println("您剛抽中了IPHONE X!");
- System.out.println("只要回答下列問題,就能馬上額外加碼switch!");
- System.out.println("有一艘船快沉船了,船上有436位乘客,468桶燃料,請問:韓國瑜繼續當高雄市長的機率是多少?(1)100趴(2)韓總不會耽誤市政啦(3)放眼世界,征服宇宙(4)紫色,因為外星人不會戴帽子");
- 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("你再繼續亂打沒關係");
-
- }
- }
- }
複製代碼 |