本帖最后由 常乃伟 于 2014-6-22 22:39 编辑
求指导这是为什么,新手菜鸟,刚开始学!!!!!
class Siji
{
public static void main(String[] args)
{
int x = 4;
if(x>12 || x<1 )
System.out.println("月份不存在");
else if(x>=3 && x<=5);
System.out.println("春天");
else if(x>=6 && x<=8);
System.out.println("夏天");
else if(x>=9 && x<=11);
System.out.println("秋天");
else
System.out.println("冬天");
}
}
|