需求:根据用户指定的月份 打印该月份所属的季节。
3.4.5春季-6.7.8夏季-9.10.11秋季12.1.2冬季
class IfTest
{
public static void main(string[] args)
{
int x = 4;
if(x==3 | | x==4 | | x==5 )
System.out.println(x+"春季");
else if(x==6 | | x==7 | | x==8 )
System.out.println(x+"夏季");
else if(x==9 | | x==10| | x==11)
System.out.println(x+"秋季");
else if(x==12 | | x==1 | x==2)
System.out.println(x+"冬季");
else
System.out.println(x+"月份不存在");
}
} |
|