標題:
if...else if...else 判斷式 (二)
[打印本頁]
作者:
tonyh
時間:
2019-7-2 14:58
標題:
if...else if...else 判斷式 (二)
利用if...else if...else語法, 試做一成績分級程式.
90分~100分 優
80分~89分 甲
70分~79分 乙
60分~69分 丙
0分~59分 丁
&& 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);
}
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-2 15:17
public class Ch02
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
float score;
String str;
System.out.print("Enter your score: ");
score=s.nextFloat();
if(score>=90 && score<=100)
str="A";
else if(score>=80 && score<=90)
str="B";
else if(score>=70 && score<=80)
str="C";
else if(score>=60 && score<=170)
str="D";
else if(score>=0 && score<=60)
str="E";
else
str="Wrong enter!";
System.out.println(str);
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-2 15:17
import java.util.Scanner;
public class Ch02 {
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("輸入錯誤!");
}
}
複製代碼
作者:
李承洋
時間:
2019-7-2 15:19
import java.util.Scanner;
public class Ch13 {
public static void main(String[] args)
{
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<=89)
str="甲";
else if(score>=70 && score<=79)
str="乙";
else if(score>=60 && score<=69)
str="丙";
else if(score<60 && score>=0)
str="丁";
else
str="輸入錯誤";
System.out.println(str);
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-2 15:19
import java.util.Scanner;
public class Ch09 {
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("輸入錯誤");
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-2 15:20
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
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);
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-2 15:21
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
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);
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-2 15:22
import java.util.Scanner;
public class Ch13
{
public static void main(String agrs[])
{
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);
}
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-2 15:23
import java.util.Scanner;
public class Ch02
{
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);
}
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-2 15:24
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<=90)
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);
}
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-2 15:26
回復
1#
tonyh
package ch01;
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);
}
}
}
複製代碼
作者:
李沛儒
時間:
2019-7-2 15:27
import java.util.Scanner;
public class Ch20 {
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);
}
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-2 15:28
import java.util.Scanner;
public class Ch13 {
public static void main(String[] args){
Scanner s=new Scanner(System.in);
int score;
String str;
System.out.print("請輸入你的成績: ");
score=s.nextInt();
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);
}
}
複製代碼
作者:
王煦
時間:
2019-7-2 15:28
import java.util.Scanner;
public class Ch14 {
public static void main(String[] args) {
while(true)
{
float score;
String str;
System.out.print("請輸入你的成績:");
score=new Scanner(System.in).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);
}
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-2 15:31
public class Ch02 {
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
float score;
System.out.print("請輸入你的成績: ");
score=s.nextFloat();
if (score<=100 && score>=90)
System.out.println("優");
else if(score<90 && score>=80)
System.out.println("甲");
else if(score<80 && score>=70)
System.out.println("乙");
else if(score<70 && score>=60)
System.out.println("丙");
else if(score>=0 && score<60)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
複製代碼
作者:
葉子于
時間:
2019-7-2 15:31
本帖最後由 葉子于 於 2019-7-2 16:01 編輯
import java.util.Scanner;
public class ch01 {
public static void main(String[] args){
Scanner s=new Scanner(System.in);
int score;
String str;
System.out.print("請輸入你的成績: ");
score=s.nextInt();
if(score>=90&score<=100)
System.out.print("優");
else if(score>=80&score<90)
System.out.print("甲");
else if(score>=70&score<80)
System.out.print("乙");
else if(score>=60&score<70)
System.out.print("丙");
else if(score>=0&score<60)
System.out.print("丁");
else
System.out.print("輸入錯誤!");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2