Java写出生肖年判断
更新时间:2018年02月24日 14:51:59 作者:彬菌
本篇文章主要给大家分享一篇关于用JAVA写出生肖判断的小功能,有兴趣的跟着学习下。
以往我们用的最多的就是关于年或者日期的判断,其实关于生肖的判断有点类似年限的判断。
下面是全部代码:
import java.util.Scanner; public class Zodiac { public static void main(String[] args){ Scanner input=new Scanner(System.in);//声明扫描仪变量 System.out.println("请输入年份");//系统提示输入 try{ //监听异常 while(true){ int birth = input.nextInt()%12; //用户输入%12在再转换 switch(birth){ case 0:System.out.println("猴年");break; case 1:System.out.println("鸡年");break; case 2:System.out.println("狗年");break; case 3:System.out.println("猪年");break; case 4:System.out.println("鼠年");break; case 5:System.out.println("牛年");break; case 6:System.out.println("虎年");break; case 7:System.out.println("兔年");break; case 8:System.out.println("龙年");break; case 9:System.out.println("蛇年");break; case 10:System.out.println("马年");break; case 11:System.out.println("羊年");break; default :System.out.println("错误!请输入大于0的数"); //不满足以上条件的默认输出这个语句 } } } catch(Exception e){ //捕捉异常 System.out.println("请正确输入"); e.printStackTrace(); //打印异常信息在程序中出错的位置及原因 } } }
大家可以测试下,如果还有任何不明白的地方可以在下方的留言区讨论。
相关文章
浅谈升级Spring Cloud到Finchley后的一点坑
这篇文章主要介绍了浅谈升级Spring Cloud到Finchley后的一点坑,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-10-10Spring boot集成Go-FastDFS实现图片上传删除等功能实现
这篇文章主要介绍了Spring boot集成Go-FastDFS实现图片上传删除等功能实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-04-04java两个integer数据判断相等用==还是equals
本文主要介绍了java两个integer数据判断相等用==还是equals,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2021-12-12springboot Interceptor拦截器excludePathPatterns忽略失效
这篇文章主要介绍了springboot Interceptor拦截器excludePathPatterns忽略失效的问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-07-07
最新评论