標題:
[牛刀小試] if...else if...else 判斷式 (二)
[打印本頁]
作者:
許婷芳
時間:
2020-8-18 10:39
標題:
[牛刀小試] if...else if...else 判斷式 (二)
利用if...else if...else語法, 試做一成績分級程式.
90分~100分 優
80分~89分 甲
70分~79分 乙
60分~69分 丙
0分~59分 丁
作者:
王可同
時間:
2020-8-18 11:08
本帖最後由 王可同 於 2020-8-18 11:31 編輯
import java.io.Console;
public class M
{
public static void main(String args[])
{
Console c=System.console();
int x;
System.out.print("輸入成績:");
x=Integer.parseInt(c.readLine());
if(x<=100&&x>=90)
System.out.println("優");
else if(x<=89&&x>=80)
System.out.println("甲");
else if(x<=79&&x>=70)
System.out.println("乙");
else if(x<=69&&x>=60)
System.out.println("丙");
else if(x<=59&&x>=0)
System.out.println("丁");
else
System.out.println("輸入錯誤!");
}
}
複製代碼
作者:
劉柏瓘
時間:
2020-8-18 11:18
本帖最後由 劉柏瓘 於 2020-8-18 11:33 編輯
import java.io.Console;
public class A
{
public static void main(String args[])
{
int x;
Console c=System.console();
x=Integer.parseInt(c.readLine("請輸入成績:"));
if(x>=90&&x<=100)
System.out.println("優");
else if(x>=80&&x<=89)
System.out.println("甲");
else if(x>=70&&x<=79)
System.out.println("乙");
else if(x>=60&&x<=69)
System.out.println("丙");
else if(x>=0&&x<=59)
System.out.println("丁");
else
System.out.println("輸入錯誤!!!!!");
}
}
複製代碼
作者:
古于芳
時間:
2020-8-18 11:33
import java.io.Console;
public class XX
{
public static void main(String args[])
{
Console c=System.console();
while (0<1)
{
float x;
System.out.println("輸入成績(0~100): ");
x=Float.parseFloat(c.readLine());
if (90<=x&&x<=100)
{
System.out.println("優");
}
else if (80<=x&&x<=89)
{
System.out.println("甲");
}
else if (70<=x&&x<=79)
{
System.out.println("乙");
}
else if (60<=x&&x<=69)
{
System.out.println("丙");
}
else if (0<=x&&x<=59)
{
System.out.println("丁");
}
else
{
System.out.println("輸入錯誤,請重新輸入");
System.out.println("********************");
}
}
}
}
複製代碼
作者:
陳冠霖
時間:
2020-8-18 11:36
//成績
import java.io.Console;
public class f
{
public static void main(String args[])
{
int x;
Console c=System.console();
System.out.print("輸入成績:");
x=Integer.parseInt(c.readLine());
if(x>=90 && x<=100)
System.out.println("優");
else if(x>=80 && x<=89)
System.out.println("甲");
else if(x>=70 && x<=79)
System.out.println("乙");
else if(x>=60 && x<=69)
System.out.println("丙");
else if(x>=0 && x<=59)
System.out.println("丁");
else
System.out.println("輸入錯誤!");
}
}
複製代碼
作者:
陳文杰
時間:
2020-8-18 11:39
import java.io.Console ;
public class R
{
public static void main(String args[])
{ int x;
Console g=System.console();
x=Integer.parseInt(g.readLine("輸入成績 ") );
if(x>=90&&x<=100)
System.out.println("優");
else if(x>=80&&x<=89)
System.out.println("甲");
else if(x>=70&&x<=79)
System.out.println("乙");
else if(x>60&&x<=69)
System.out.println("丙");
else if(x>=0&&x<=59)
System.out.println("丁");
else
System.out.println("錯誤");
}
}
複製代碼
作者:
郭泰麟
時間:
2020-8-18 11:40
import java.io.Console;
public class a
{
public static void main(String args[])
{
int x;
Console c=System.console();
x=Integer.parseInt(c.readLine("請輸入分數: "));
if (x<0||x>100)
System.out.println("錯誤!");
else if(x>=90)
System.out.println("優!");
else if(x>=80)
System.out.println("甲!");
else if(x>=70)
System.out.println("乙!");
else if(x>=60)
System.out.println("丙!");
else if(x<60)
System.out.println("丁!");
}
}
複製代碼
作者:
鄒佳諺
時間:
2020-8-18 11:44
import java.io.Console;
public class E
{
public static void main(String args[])
{
int x;
Console c=System.console();
System.out.print("輸入x: ");
x=Integer.parseInt(c.readLine());
if(x>=90 && x<=100)
System.out.println("優");
else if(x<=89 && x>=80)
System.out.println("甲");
else if(x<=79 && x>=70)
System.out.println(" 乙");
else if(x<=69 && x>=60)
System.out.println("丙");
else if(x<=59 && x>=0)
System.out.println("丁");
else
System.out.println("壞掉囉");
}
}
複製代碼
作者:
于舜年
時間:
2020-8-18 11:47
import java.io.Console;
public class Test
{
public static void main(String args[])
{
Console c=System.console();
int x;
x=Integer.parseInt(c.readLine("請輸入x"));
if(100>=x&&x>=90)
System.out.println("優");
else if(90>x&&x>=80)
System.out.println("甲");
else if(80>x&&x>=70)
System.out.println("乙");
else if(70>x&&x>=60)
System.out.println("丙");
else if(60>x&&x>=0)
System.out.println("丁");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2