Java基礎程式碼季節判斷季節1

自身修養發表於2019-03-30

import java.ouil.scanner;//導包原始碼出自渡一

public class SeasonDemo{
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.println(“請輸入一個月份,我來幫您判斷所屬的季節”);
int month = input nextInt();//讀取輸入的數字int型別,input.nextLine();讀取字串String型
if(month<1 || month>12){
System.out.println(“您輸入的數字不符合月份 資料有誤”);
}else if(month>=3 && month<=5){
System.out.println(“春天”);
}else if(month>=6 && month<=8){
System.out,println(“夏天”);
}else if(month>=9 && month<=11){
System.out.println(“秋天”);
}else{
System.out.println(“冬天”);
}

}

}

相關文章