package com.itheima;
class Huo
{
public static void main(String[] args)
{
//需求:根据用户指定月份,打印该月份所属的季节。
//3,4,5春季6,7,8夏季9,10,11秋季 12,1,2冬季//
int x = 4;
{
if(x>12 || x<1)
System.out.println(x+"月份不存在");
else if(x>=3 && x<=5)
System.out.println(x+"春节");
else if(x>=6 && x<=8)
System.out.println(x+"夏季");
else if(x>=9 && x<=11)
System.out.println(x+"秋季");
else
System.out.println(x+"冬季");
}
}
}
我找到问题了,是因为有中文的分号,你i需该成英文的就好了 |