標題:
[作業] switch 判斷式
[打印本頁]
作者:
tonyh
時間:
2021-11-12 16:55
標題:
[作業] switch 判斷式
運用 switch 語法,設計一個有趣的選擇題。
參考回應
1. 用跳的嗎?
2. 沒吃過豬肉也看過豬走路!
3. 你是豬啊?
4. 答對了!
import java.util.Scanner;
public class Ch10 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int answer;
System.out.println("<小米腦殘問答>");
System.out.println("請問豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
System.out.print("請回答: ");
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("輸入錯誤!");
}
}
}
複製代碼
作者:
袁華岑
時間:
2021-11-14 11:07
import java.util.Scanner;
public class Hw {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int ans;
System.out.println("小米腦殘問答");
System.out.println("請問豬有幾隻腳? (1)一隻 (2)兩隻 (3)三隻 (4)四隻 ");
System.out.println("請回答: ");
ans = s.nextInt();
switch(ans) {
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("輸入錯誤");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2