a003. 兩光法師占卜術 - 高中生程式解題系統

題目:

輸入一個日期,然後依照下面的公式:

M=月 D=日 S=(M*2+D)%3

得到 S 的值,再依照 S 的值從 0 到 2 分別給與 普通、吉、大吉 等三種不同的運勢

<aside> 💡

了解選擇結構(if/else)

</aside>

python

m,d=map(int,input().split())
s=(m*2+d)%3

if s == 0:
    print('普通')
elif s == 1:
    print('吉')
elif s == 2:
    print('大吉')

c++

#include<bits/stdc++.h>
using namespace std;
int main(){
    int M,D,S;
    scanf("%d %d",&M,&D);
    S=(M*2+D)%3;

    if(S==0)
        cout<<"普通\\n";
    else if(S==1)
        printf("吉\\n");
    if(S==2)
        printf("大吉\\n");
}