根據使用者給出的年份求天幹、地支和生肖(Java原始碼)

來源:互聯網
上載者:User

         我國曆法中的天幹、地支和生肖,排列時有規律的。天乾的順序是“甲乙丙丁戊己庚辛壬癸”,地支的順序是“子醜寅卯辰巳午未申酉戌”,生肖的順序是“鼠牛虎兔龍蛇馬羊猴雞狗豬”。天幹、地支、生肖的計算方法非常簡單:年份減去3除以10得到的餘數是幾,就對應天幹中的第幾位;年份減去3除以12得到的餘數是幾,就對應地支中的第幾位;生肖的計算方法和地支的計算方法完全一樣。

public class ShengXiao
{
         private static final String MSG="請帶上一個整形參數運行,如:java ShengXiao 2008";
         public void getInfo(int year)
         {
                  String sTG[]={"癸","甲","乙","丙","丁","戊","己","庚","辛","任"};

                  String sDZ[]={"亥","子","醜","寅","卯","辰","巳","午","未","申","酉","戌"};
                  String sSX[]={"豬","鼠","牛","虎","兔","龍","蛇","馬","羊","猴","雞","狗"};
                 int i=(year-3)%10;
                  int j=(year-3)%12;
                   System.out.println("輸入年份是:\t"+year);
                   System.out.println("天干地支是:\t"+sTG[i]+sDZ[j]);
                  System.out.println("對應生肖是:\t"+sSX[j]);
       
           }
           public static void main(String []args)
           {
                    ShengXiao obj=new ShengXiao();
                   if(args.length<1)
                  {
                        System.out.println(MSG);
                         return;
                   }
                  int iYear;
                   try{iYear=Integer.parseInt(args[0]);}
                   catch(Exception err)
                   {
                               System.out.println(MSG);

                               return;
                   }
                 obj.getInfo(iYear);
              }
 
       }

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.