返回列表 發帖
本帖最後由 林妤芹 於 2020-7-17 13:47 編輯
  1. #include<iostream>
  2. #inciude<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int m,d,s;
  7.       cout<<"請輸入生日月份:";
  8.       cin>>m;
  9.       cout<<"請輸入生日日期:";
  10.       cin>>d;
  11.       s=(m*2+d)%3;
  12.       if(s==2){
  13.             cout<<"大吉"<<endl;
  14.       }else if(s==1){     
  15.             cout<<"吉"<<endl;
  16.       }else{
  17.             cout<<"普通"<<endl;
  18.       }
  19.       system("pause");
  20.       return 0;
  21. }
複製代碼

TOP

返回列表