返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int t;
  8.     cout<<"請輸入出生西元年: ";
  9.     cin>>t;
  10.     t=t-1911;

  11.     t=t%12;
  12.     string a[]{"鼠","牛","虎","兔","龍","蛇","馬","羊","猴","雞","狗","豬"};
  13.     cout<<endl<<a[t-1]<<"年"<<endl<<endl;




  14.     system("pause");

  15.     return 0;

  16. }
複製代碼

TOP

返回列表