根据指定月份,打印该月份所属的季节。 3,4,5 春季 6,7,8 夏季 9,10,11 秋季 12, 1, 2 冬季 if和switch各写一版
1、public class Month{
public static void main(String args[]){
for (int i = 1;i <= 12 ;i++ )
{
if (i == 3 || i == 4 || i == 5)
{
System.out.println(i+"月份是春季");
}
if (i == 6 || i == 7 || i == 8)
{
System.out.println(i+"月份是夏季");
}
if (i == 9 || i == 10 || i == 11)
{
System.out.println(i+"月份是秋季");
}
if (i == 12 || i == 1 || i == 2)
{
System.out.println(i+"月份是冬季");
}
}
}
}
2、public class Month{
public static void main(String args[]){
for (int i = 1;i <= 12;i++ )
{
switch(i)
{
case 1:System.out.println("1月份是冬季");break;
case 2:System.out.println("2月份是冬季");break;
case 3:System.out.println("3月份是春季");break;
case 4:System.out.println("4月份是春季");break;
case 5:System.out.println("5月份是春季");break;
case 6:System.out.println("6月份是夏季");break;
case 7:System.out.println("7月份是夏季");break;
case 8:System.out.println("8月份是夏季");break;
case 9:System.out.println("9月份是秋季");break;
case 10:System.out.println("10月份是秋季");break;
case 11:System.out.println("11月份是秋季");break;
case 12:System.out.println("12月份是冬季");break;
default:;
}
}
}
}
//default的后面还是要加: 之后在加;