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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

/** 一年有12个月,每个月分别对应于不同的季节。
请根据给定的月份,输出对应的季节。
春:3,4,5
夏:6,7,8
秋:9,10,11
冬:1,2,12
*/
import java.util.Scanner;
class  lingwuyier3
{
public static void main(String[] args)
{
/* int month=17;
  switch(month)
  {
   case 3:
   case 4:
   case 5:
    System.out.println(month+"月为春天");
    break;
   case 6:
   case 7:
   case 8:
    System.out.println(month+"月为夏天");
    break;
   case 9:
   case 10:
   case 11:
    System.out.println(month+"月为秋天");
    break;
   case 12:
   case 1 :
   case 2 :
    System.out.println(month+"月为冬天");
    break;
   default :
    System.out.println("非法季节");
    break;
  }   
*/
Scanner in=new Scanner(System.in);
System.out.println("请输入月份(1-12):");
int month=in.nextInt();
switch(month)
  {
   case 3:
   case 4:
   case 5:
    System.out.println(month+"月为春天");
    break;
   case 6:
   case 7:
   case 8:
    System.out.println(month+"月为夏天");
    break;
   case 9:
   case 10:
   case 11:
    System.out.println(month+"月为秋天");
    break;
   case 12:
   case 1 :
   case 2 :
    System.out.println(month+"月为冬天");
    break;
   default :
    System.out.println("非法季节");
    break;
  }   
}
}

3 个回复

倒序浏览
用for循环呀
回复 使用道具 举报

这种比较易懂一些不是吗?代码随要简洁,但这样一目了然。 不失为一种好方法。
回复 使用道具 举报
好厉害,学习了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马