分别用switch语句和if语句实现键盘录入月份,输…
2019-08-16 10:00:56来源:博客园 阅读 ()
分别用switch语句和if语句实现键盘录入月份,输出对应的季节
- switch建议判断固定值的时候用
- if建议判断区间或范围的时候用
1.用switch实现键盘录入月份,输出对应的季节
import java.util.Scanner; class Hello2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入月份"); int month = sc.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; } } }
结果:
2.用if实现键盘录入月份,输出对应的季节
import java.util.Scanner; class Hello2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入月份"); int month = sc.nextInt(); if (month > 12 && month < 1) { System.out.println("没有对应的季节"); }else if (month >= 3 && month <=5) { System.out.println(month + "月是春季"); }else if (month >=6 && month <=9) { System.out.println(month + "月是夏季"); }else if (month >=10 && month <=12) { System.out.println(month + "月是秋季"); }else if (month >=1 && month <= 3) { System.out.println(month + "月是冬季"); } } }
结果:
原文链接:https://www.cnblogs.com/Wangzui1127/p/11153823.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:让我们一起来: 面向对象!!!
- switch循环所支持的数据类型 2020-06-07
- Java方法 2020-05-13
- 【JAVA SE基础篇】11.scanner用法和流程控制语句的介绍 2020-05-11
- while循环语句 2020-04-26
- switch结构的用法及作用 2020-04-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash