標題:
[隨堂測驗] if...else if...else 判斷式 (二)
[打印本頁]
作者:
許婷芳
時間:
2019-8-31 14:33
標題:
[隨堂測驗] if...else if...else 判斷式 (二)
本帖最後由 許婷芳 於 2019-8-31 15:14 編輯
利用if...else if...else語法, 試做一成績分級程式.
90分~100分 優
80分~89分 甲
70分~79分 乙
60分~69分 丙
0分~59分 丁
作者:
吳孟書
時間:
2019-8-31 14:49
import java.io.Console;
public class a
{
public static void main(String args[])
{
Console c=System.console();
int x;
x=Integer.parseInt(c.readLine("輸入成績:"));
if(100>=x&&x>=90)
System.out.println("優");
else if(89>=x&&x>=80)
System.out.println("甲");
else if(79>=x&&x>=70)
System.out.println("乙");
else if(69>=x&&x>=60)
System.out.println("丙");
else
System.out.println("丁");
}
}
複製代碼
作者:
陳柏銓
時間:
2019-8-31 14:50
import java.io.Console;
public class Ch01 {
public static void main(String[] args) {
int sc;
Console c=System.console();
sc=Integer.parseInt(c.readLine( "輸入成績: " ));
if(sc>=90 && sc<=100)
System.out.println("優");
else if(sc>=80 && sc<=89)
System.out.println("甲");
else if(sc>=70 && sc<=79)
System.out.println("乙");
else if(sc>=60 && sc<=69)
System.out.println("丙");
else
System.out.println("丁");
}
}
複製代碼
作者:
吳孟修
時間:
2019-8-31 14:51
import java.io.Console;
public class Ch04
{
public static void main(String args[])
{
Console c=System.console();
int s;
System.out.print("輸入分數:");
s=Integer.parseInt(c.readLine());
if(s>=90 && s<=100)
System.out.println("優");
else if(s>=80 && s<=89)
System.out.println("甲");
else if(s>=70 && s<=79)
System.out.println("乙");
else if(s>=60 && s<=69)
System.out.println("丙");
else
System.out.println("丁");
}
}
複製代碼
作者:
洪寬瀧
時間:
2019-8-31 14:51
import java.io.Console;
public class ch091
{ public static void main(String args[])
{
Console c=System.console();
int score;
System.out.print("輸入成績:");
score=Integer.parseInt(c.readLine());
if(score>=90 && score<=100)
System.out.println("優");
else if(score>=80 && score<=89)
System.out.println("甲");
else if(score>=70 && score<=79)
System.out.println("乙");
else if(score>=60 && score<=69)
System.out.println("丙");
else
System.out.println("丁");
}
}
複製代碼
作者:
湯郡一
時間:
2019-8-31 14:52
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int score;
System.out.print("輸入成績 ");
score=Integer.parseInt(c.readline);
if (score>=90 && score>=100)
ystem.out.print("優");
if (score>=80 && score>=89)
system.out.print("甲");
if (score>=70 && score>=79)
system.out.print("乙");
if (score>=60 && score>=69)
system.out.print("丙");
else
system.out.print("丁")
}
}
複製代碼
作者:
田宇任
時間:
2019-8-31 14:58
import java.io.Console;
public class prinse
{
public static void main(String []args)
{
Console c=System.console();
int score;
System.out.print("輸入成績: ");
score=Integer.parseInt(c.readLine());
if(score>=90 && score<=100)
System.out.print("優");
else if(score>=80 && score<=89)
System.out.print("甲");
else if(score>=70 && score<=79)
System.out.print("乙");
else if(score>=60 && score<=69)
System.out.print("丙");
else
System.out.print("丁");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2