標題:
if...else if...else 判斷式 (二)
[打印本頁]
作者:
tonyh
時間:
2020-1-31 13:44
標題:
if...else if...else 判斷式 (二)
利用if...else if...else語法,試做一成績分級程式。
90分以上 100分以下 優
80分以上 未達90分 甲
70分以上 未達80分 乙
60分以上 未達70分 丙
0分以上 未達60分 丁
不在上述範圍 輸入錯誤
&& and
|| or
import java.util.Scanner;
public class Ch09 {
public static void main(String[] args) {
while(true)
{
Scanner s=new Scanner(System.in);
float score;
String str;
System.out.print("請輸入你的成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
str="優";
else if(score>=80 && score<90)
str="甲";
else if(score>=70 && score<80)
str="乙";
else if(score>=60 && score<70)
str="丙";
else if(score>=0 && score<60)
str="丁";
else
str="輸入錯誤!";
System.out.println(str);
}
}
}
複製代碼
作者:
張宸翔
時間:
2020-1-31 14:03
本帖最後由 張宸翔 於 2020-1-31 14:32 編輯
import java.util.Scanner;
public class Ch44 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int score;
System.out.print("請輸入你的成績: ");
score=s.nextInt();
if(score>=90 && score<=100)
System.out.println("優");
else if(score>=80 && score<90)
System.out.println("甲");
else if(score>=70 && score<80)
System.out.println("乙");
else if(score>=60 && score<70)
System.out.println("丙");
else if(score>=0 && score<60)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
複製代碼
作者:
盧弘毅
時間:
2020-1-31 14:06
import java.util.Scanner;
public class Ch44 {
public static void main(String[] args) {
while(true)
{
Scanner s=new Scanner(System.in);
float score;
System.out.print("請輸入你的成績:");
score=s.nextFloat();
if(score>=90 && score<=100)
System.out.println("豪棒");
else if(score>=80 && score<90)
System.out.println("甲");
else if(score>=70 && score<80)
System.out.println("乙");
else if(score>=60 && score<70)
System.out.println("丙");
else if(score>=0 && score<60)
System.out.println("用點腦好嗎");
else
System.out.println("輸入錯誤");
}
}
}
複製代碼
作者:
楊秉樺
時間:
2020-1-31 14:06
import java.util.Scanner;
public class Ch44
{
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int S;
System.out.println("請輸入你的成績: ");
S=s.nextInt();
if (S>=90 && S<=100)
System.out.println("優");
else if (S>=80 && S<90)
System.out.println("甲");
else if (S>=70 && S<80)
System.out.println("乙");
else if (S>=60 && S<70)
System.out.println("丙");
else if (S>=0 && S<60)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
複製代碼
作者:
邱翊博
時間:
2020-1-31 14:07
package goodbye;
import java.util.Scanner;
public class goodbye {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
float score;
System.out.print("請輸入你的成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
System.out.println("優");
else if(score>=80 && score<90)
System.out.println("甲");
else if(score>=70 && score<80)
System.out.println("乙");
else if(score>=60 && score<70)
System.out.println("丙");
else if(score>=0 && score<60)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
複製代碼
作者:
蔡承翰
時間:
2020-1-31 14:09
import java.util.Scanner;
public class Ch43 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int GG;
System.out.print("請輸入你的成績:");
GG=s.nextInt();
if(GG>=90 && GG<=100)
System.out.println("優");
else if(GG>=80 && GG<=90)
System.out.println("甲");
else if(GG>=70 && GG<=80)
System.out.println("乙");
else if(GG>=60 && GG<=70)
System.out.println("丙");
else if(GG>=0 && GG<=60)
System.out.println("丁");
else
System.out.println("輸入錯誤!");
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-1-31 14:09
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
float score;
String str1;
System.out.print("輸入你的成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
str1="優";
else if(score>=80 && score<90)
str1="甲";
else if (score>=70 && score<80)
str1="乙";
else if (score>=60 && score<70)
str1="丙";
else if (score>=0 && score<60)
str1="丁";
else
str1="錯誤!";
System.out.print(str1);
}
}
複製代碼
作者:
劉家銘
時間:
2020-1-31 14:10
import java.util.Scanner;
public class Ch43
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
float score;
System.out.println("請輸入成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
System.out.println("優");
else if(score>=80 && score<90)
System.out.println("甲");
else if(score>=70 && score<80)
System.out.println("乙");
else if(score>=60 && score<70)
System.out.println("丙");
else if(score>=0 && score<60)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-1-31 14:11
import java.util.Scanner;
public class Ch12
{
public static void main(String[] args)
{
while(true)
{
Scanner s=new Scanner(System.in);
float score;
String str;
System.out.print("請輸入你的成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
str="優";
else if(score>=80 && score<90)
str="甲";
else if(score>=70 && score<80)
str="乙";
else if(score>=60 && score<70)
str="丙";
else if(score>=0 && score<60)
str="丁";
else
str="輸入錯誤!";
System.out.println(str);
}
}
}
複製代碼
作者:
沙芃妘
時間:
2020-1-31 14:11
package Ch09;
import java.util.Scanner;
public class Ch09 {
public static void main(String[] args)
{
while (true)
{
Scanner s=new Scanner(System.in);
float score;
String str;
System.out.print("請輸入你的成績:");
score=s.nextFloat();
if(score>=90&& score<=100)
str="優";
else if(score>=90&& score<=100)
str="甲";
else if(score>=80&& score<=90)
str="乙";
else if(score>=70&& score<=80)
str="丙";
else if(score>=0&& score<=90)
str="丁";
else
str="輸入錯誤!";
System.out.println(str);
}
}
}
複製代碼
作者:
何蕙妘
時間:
2020-1-31 14:11
import java.util.Scanner;
public class ch44
{
public static void main(String args[])
{
while(true)
{
Scanner s=new Scanner(System.in);
float score;
String str;
System.out.print("請輸入你的成績: ");
score=s.nextFloat();
if(score>=90 && score<=100)
str="優";
else if(score>=80 && score<=90)
str="甲";
else if(score>=70 && score<=80)
str="乙";
else if(score>=60 && score<=70)
str="丙";
else if(score>=0 && score<=60)
str="丁";
else
str="輸入錯誤";
System.out.println(str);
}
}
}
複製代碼
作者:
黃煜城
時間:
2020-1-31 14:15
import java.util.Scanner;
public class Ch13 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
float scort;
System.out.print("請輸入你的成績:");
scort=s.nextFloat();
if(scort>=90 && scort<=100)
System.out.println("優等");
else if(scort>=80 && scort<90)
System.out.println("甲等");
else if(scort>=70 && scort<80)
System.out.println("乙等");
else if(scort>=60 && scort<70)
System.out.println("丙等");
else if(scort>=0 && scort<60)
System.out.println("丁等");
else
System.out.println("輸入錯誤!");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2