判断星座

2018-11-12 06:53:23来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

2018-11-11  17:12:34 开始写

 1 public static String getConstellation(int month, int day)
 2       {
 3         String[] constellations = { "魔蝎座", "水瓶座", "双鱼座", "白羊座", "金牛座", "双子座", 
 4           "巨蟹座", "狮子座", "处女座", "天秤座", "天蝎座", "射手座" };
 5         int[] divide = { 19, 18, 20, 19, 20, 21, 22, 22, 22, 23, 22, 21 };
 6         if (day <= divide[(month - 1)]) {
 7           return constellations[(month - 1)];
 8         }
 9         if (month >= 12) {
10             month = 0;
11         }
12         return constellations[month];
13       }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Toolkit tool 获取屏幕、显示在屏幕中心

下一篇:MyBatis源码解析之日志记录