返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int y;
  9. re:
  10.     cout<<"請輸入西元年:"<<endl;
  11.     cin>>y;
  12.     y=y-1911;
  13.     y=y%12;
  14.     string n[]={"鼠","牛","虎","兔","龍","蛇","馬","羊","猴","雞","狗","豬"};
  15.     cout<<n[y-1]<<"年"<<endl;

  16.     system("pause");
  17.     goto re;
  18.     return 0;
  19. }
複製代碼

TOP

返回列表