標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2013-5-27 21:00
標題:
if...else if...else 判斷式
import java.util.Scanner;
public class ch15 //類別
{
public static void main(String args[]) //主方法
{
Scanner s=new Scanner(System.in);
int score;
System.out.print("請輸入你的成績: ");
score=s.nextInt();
if(score==100)
{
System.out.println("太神了!");
}else if(score<100 && score>=60)
{
System.out.println("及格了!");
}else if(score<60 && score>0)
{
System.out.println("不及格!");
}else if(score==0)
{
System.out.println("鴨蛋打屁股!");
}else
{
System.out.println("輸入錯誤!");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2