標題:
switch 判斷式
[打印本頁]
作者:
tonyh
時間:
2012-8-18 16:59
標題:
switch 判斷式
本帖最後由 tonyh 於 2012-8-18 17:28 編輯
利用 switch 判斷式, 改寫剛剛所寫的成績評論程式.
import java.io.Console;
public class ch13
{
public static void main(String args[])
{
Console console=System.console();
int score, level;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
level=score/10;
switch(level)
{
case 10:
System.out.print("哇!太神了!滿分!");
break;
case 9: case 8: case 7: case 6:
System.out.print("恭喜你及格了!");
break;
case 5: case 4: case 3: case 2: case 1:
System.out.print("哎呀!不及格!請再加油!");
break;
case 0:
System.out.print("什麼?鴨蛋!你.....");
break;
default:
System.out.print("輸入錯誤!");
}
}
}
複製代碼
作者:
t3742238
時間:
2012-8-18 17:16
import java.io.Console;
public class ch11
{
public static void main(String args[])
{
Console console=System.console();
int score;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
score=score/10;
switch(score)
{
case 10:
System.out.print("滿分 你太厲害了");
break;
case 9 :
case 8 :
case 7 :
case 6 :
case 5 :
System.out.print("不及格你這個廢柴");
break;
case 4 :
case 3 :
case 2 :
case 1 :
case 0 :
System.out.print("你這隻廢狗 你爸媽讓你去上學是白花錢的ㄡ");
break;
default:
System.out.print("手殘 輸入錯誤");
break;
}
}
}
複製代碼
作者:
劉漢文
時間:
2012-8-18 17:17
import java.io.Console;
public class ch13
{
public static void main(String args[])
{
Console console=System.console();
int score;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
score=score/10;
switch(score)
{
case 10 :
System.out.print("滿分,還可以!");
break;
case 9 :
case 8 :
case 7 :
case 6 :
case 5 :
System.out.print("你廢渣ㄚ!");
break;
case 4 :
case 3 :
case 2 :
case 1 :
case 0 :
System.out.print("你是腦包ㄇ???");
break;
default:
System.out.print("輸入錯誤");
}
}
}
複製代碼
作者:
蔡昀佑
時間:
2012-8-18 17:28
import java.io.Console;
public class ch11
{
public static void main(String args[])
{
Console console=System.console();
int score;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
score=score/10;
switch(score)
{
case 10:
System.out.print("滿分 你太厲害了");
break;
case 9 :
case 8 :
case 7 :
case 6 :
case 5 :
System.out.print("不及格你這個廢柴");
break;
case 4 :
case 3 :
case 2 :
case 1 :
case 0 :
System.out.print("你這隻廢狗 你爸媽讓你去上學是白花錢的ㄡ");
break;
default:
System.out.print("手殘 輸入錯誤");
break;
}
}
}
複製代碼
作者:
t2364705
時間:
2012-8-18 17:28
本帖最後由 t2364705 於 2012-8-18 17:30 編輯
import java.io.Console;
public class ch14
{
public static void main(String args[])
{
Console console=System.console();
int score,level;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
level=score/10;
switch(level)
{
case 10:
System.out.print("哇!你考滿分!");
break;
case 9:
case 8:
case 7:
case 6:
System.out.print("恭喜你!你及格了!");
break;
case 5:
case 4:
case 3:
case 2:
case 1:
System.out.print("不及格!你要加油!");
break;
case 0:
System.out.print("你考零分!該打!");
break;
default:
System.out.print("輸入錯誤!");
}
}
}
複製代碼
作者:
尤泓鈞
時間:
2012-8-18 17:31
import java.io.Console;
public class ch14
{
public static void main(String args[])
{
Console console=System.console();
int score, level;
System.out.print("請輸入你的成績: ");
score=Integer.parseInt(console.readLine());
level=score/10;
switch(level)
{
case 10:
System.out.print("哇!太神了!滿分!");
break;
case 9: case 8: case 7: case 6:
System.out.print("恭喜你及格了!");
break;
case 5: case 4: case 3: case 2: case 1:
System.out.print("哎呀!不及格!");
break;
case 0:
System.out.print("你.....");
break;
default:
System.out.print("輸入錯誤!");
}
}
}
複製代碼
作者:
黃博鴻
時間:
2012-10-13 14:55
import java.io.Console;
public class ch13
{
public static void main(String args[])
{
Console console=System.console();
int score,level;
System.out.print("請輸入成績: ");
score=Integer.parseInt(console.readLine());
level=score/10;
switch(level)
{
case 10:
System.out.println("你是不是作弊啊!太神了!");
break;
case 9: case 8: case 7: case 6:
System.out.println("不錯!繼續加油!");
break;
case 5: case 4: case 3: case 2: case 1:
System.out.println("你是不是在亂猜啊!");
break;
default:
System.out.println("我不了解!我不想聽!我不知道!不想和白癡講話!");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2