A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;

class IfSeasonDemo
{
        public static void main(String[] args)
        {
                while(true)
                {
                System.out.println("请输入月份--------");
                Scanner sc = new Scanner(System.in);
                int season = sc.nextInt();
                String month ;
                if(season >=3 && season <=5)
                {
                                month = "是春天";
                }else if(season >=6&& season <=8)
                {
                                month = "是夏天";               
                }else if(season >=9 && season <=11)
                {
                                month = "是秋天";               
                }else if(season >12)
                {
                        month = "你哪你有这个月份吗?你真逗哦!请重新输入----";
                }else if(season ==0)
                {
                                break ;
                }else
                {
                                month = "是冬天";                    
                }
                        System.out.println("现在是:"+season+"份"+month);               
                }
        }
}

4 个回复

正序浏览
=0和大于12可以合并在一起
回复 使用道具 举报
也可以用switch语句
回复 使用道具 举报
也可以用switch语句
回复 使用道具 举报
写多了就好了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马