返回列表 發帖

013_兩光法師占卜術

兩光法師時常替人占卜,由於他算得快又便宜,因此生意源源不絕,時常大排長龍,他想算得更快一點,因此找了你這位電腦高手幫他用電腦來加快算命速度。他的占卜規則很簡單,規則是這樣的,輸入一個日期,然後依照以下的公式計算:

M = 月
D = 日
S = 兩倍的月加上日之後取3的餘數

如果 S 等於 0 則為"普通",等於 1 則為 "吉",等於 2 則為 "大吉"

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         while (true)
  7.         {
  8.                 int m,d,s;
  9.                         cout<<"輸入你的生日月份:";
  10.                         cin>>m;
  11.                         cout<<"輸入你的生日日期:";
  12.                         cin>>d;
  13.                         s=(m*2+d)%3;
  14.                         if (s==0)
  15.                         {
  16.                                 cout<<"普通"<<endl;
  17.                         }
  18.                         else if (s==1)
  19.                         {
  20.                                 cout<<"吉"<<endl;
  21.                         }
  22.                         else
  23.                         {
  24.                                 cout<<"大吉"<<endl;
  25.                         }
  26.                 system("pause");
  27.         }
  28.         
  29.         system("pause");
  30.         return 0;
  31. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6.         while(true)
  7.         {
  8. int M, D ,S;
  9. cout<<"輸入一個月份:";
  10. cin>>M        ;
  11. cout<<"輸入一個日期:";
  12. cin>>D;
  13. S = (M * 2 + D)% 3;
  14. if (S == 0)
  15. {
  16.         cout<<"普通"<<endl;
  17. }
  18. else if(S == 1)

  19. {
  20.         cout<<"吉"<<endl;
  21. }
  22. else if (S == 2)
  23. {
  24.         cout<<"大吉"<<endl;
  25. }
  26. else
  27. {
  28.         cout<<"........."<<endl;
  29. }
  30.        
  31.                 system ("pause");
  32.         }
  33.         return 0;
  34. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. main()
  5. {
  6.         while(true)
  7.         {
  8.         int m, d, s;
  9.         cout << "請輸入你的生日月分:" << endl;
  10.         cin >> m;
  11.         cout << "請輸入你的生日日期:" << endl;
  12.         cin >> d;
  13.         s = (m * 2 + d) % 3;       
  14.         if (s == 0)
  15.         {
  16.                 cout << "普通" << endl;
  17.         }
  18.         else if (s == 1)
  19.         {
  20.                 cout << "吉" << endl;
  21.         }
  22.         else
  23.     {
  24.             cout << "大吉" << endl;
  25.     }
  26.         system("pause");
  27.         }
  28.         return 0;
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         while(true)
  7.         {
  8.                 int m,d,s;
  9.                 cout<<"請輸入一個月份";
  10.                 cin>>m;
  11.                 cout<<"請輸入生日日期";
  12.                 cin>>d;
  13.                 s=(m*2+d);
  14.                 if(s==0)
  15.                 {
  16.                         cout<<"普通"<<endl;
  17.                        
  18.                 }       
  19.                 else if(s==1)
  20.                 {
  21.                         cout<<"吉"<<endl;
  22.                        
  23.                 }       
  24.                 else if(s==2)
  25.                 {
  26.                         cout<<"大吉"<<endl;
  27.                        
  28.                 }       
  29.                
  30.                 return 0;
  31.         }                       
  32. }
複製代碼

TOP

返回列表