標題:
if...else if...else 判斷式 (二)
[打印本頁]
作者:
陳品肇
時間:
2019-7-2 12:37
標題:
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 14:50
import java.lang.System;
import java.util.Scanner;
public class asdf
{
public static void main(String args[])
{
for(int i=1;i<=100;i++)
{
Scanner s=new Scanner(System.in);
float a;
System.out.print("請輸入一整數: ");
a=s.nextFloat();
if(a>=90 && a<=100)
System.out.println("優");
else if(a>=80 && a<90)
System.out.println("甲");
else if(a>=70 && a<80)
System.out.println("乙");
else if(a>=60 && a<70)
System.out.println("丙");
else if(a>100 || a<0)
System.out.println("傻逼,沒這分數");
else
System.out.println("丁");
}
}
}
複製代碼
作者:
張閎鈞
時間:
2019-7-2 14:54
package text369;
import java.lang.System;
import java.util.Scanner;
public class text123 {
public static void main(String[] args) {
float x;
Scanner s=new Scanner(System.in);
System.out.println("請輸入你的成績:");
x=s.nextFloat();
if(x>=90 && x<=100)
{
System.out.print("優");
}
else if(x>=80 && x<90)
{
System.out.print("甲");
}
else if(x>=70 && x<80)
{
System.out.print("乙");
}
else if(x>=60 && x<70)
{
System.out.print("丙");
}
else if(x>=0 && x<60)
{
System.out.print("丁");
}
else
{
System.out.print("輸入錯誤");
}
}
}
複製代碼
作者:
張閎鈞
時間:
2019-7-2 15:13
package text369;
import java.lang.System;
import java.util.Scanner;
public class text123 {
public static void main(String[] args) {
while(true)
{float x;
Scanner s=new Scanner(System.in);
System.out.println("請輸入你的成績:");
x=s.nextFloat();
if(x>=90 && x<=100)
{
System.out.println("優");
}
else if(x>=80 && x<90)
{
System.out.println("甲");
}
else if(x>=70 && x<80)
{
System.out.println("乙");
}
else if(x>=60 && x<70)
{
System.out.println("丙");
}
else if(x>=0 && x<60)
{
System.out.println("丁");
}
else
{
System.out.println("輸入錯誤");
}
}
}
}
複製代碼
作者:
黃恆嘉
時間:
2019-7-2 15:23
import java.util.Scanner;
public class Ch04 {
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>100 || score<0)
str="輸入錯誤!";
else if(score>=90 && score<=100)
str="優";
else if(score>=80 )
str="甲";
else if(score>=70 )
str="乙";
else if(score>=60)
str="丙";
else if(score>=0)
str="丁";
System.out.println(str);
}
}
}
複製代碼
作者:
呂昀宸
時間:
2019-7-2 15:23
import java.util.Scanner;
public class Nsez {
public static void main(String args[])
{Scanner z=new Scanner (System.in);
while(true)
{ int a ;
System.out.print("輸入一整數");
a=z.nextInt();
if (a>=90 && a<=100)
System.out.println("優");
else if (a>=80 && a<=89)
System.out.println("甲");
else if (a>=70 && a<=79)
System.out.println("乙");
else if (a>=60 && a<=69)
System.out.println("丙");
else if (a>=0 && a<=59)
System.out.println("丁");
else
System.out.println("輸入錯誤");
}
}
}
複製代碼
作者:
黃安立
時間:
2019-7-2 15:26
package ch01;
import java.util.Scanner;
public class Ch01 {
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 junior {
public static void main(String args[])
{
Scanner c = new Scanner(System.in);
while(true) {
float a ;
String str1;
System.out.print("請輸入你的成績: ");
a=c.nextFloat();
if (a>=90 && a<=100)
str1="優";
else if (a>=80 && a<90)
str1="甲";
else if(a>=70 && a<80)
str1="乙";
else if(a>=60 && a<70)
str1="丙";
else if (a>=0 && a<60)
str1="丁";
else
str1="輸入錯誤!!" ;
System.out.println(str1);;
}
}
}
複製代碼
作者:
潘承渙
時間:
2019-7-2 15:33
import java.lang.System;
import java.util.Scanner;
public class Ch06 {
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);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2