返回列表 發帖

a003: 兩光法師占卜術

兩光法師時常替人占卜,由於他算得又快有便宜,因此生意源源不絕,時常大排長龍,他想算 得更快一點,因此找了你這位電腦高手幫他用電腦來加快算命的速度。

  他的占卜規則很簡單,規則是這樣的,輸入一個日期,然後依照下面的公式:

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

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

try:
   a = input()
   b = a.split(' ')
   c = (int(b[0])*2 + int(b[1]))%3
   if c == 0:
      print('普通')
   elif c == 1:
      print('吉')
   else:
      print('大吉')
except:
   pass

TOP

  1. try:
  2.     a=input()
  3.     b=a.split(" ")
  4.     s=(int(b[0])*2+int(b[1]))%3
  5.     if s==0:
  6.         print("普通")
  7.     elif s==1:
  8.         print("吉")
  9.     else:
  10.         print("大吉")
  11. except:
  12.     pass
複製代碼

TOP

try:
    a=input()
    b=a.split(" ")
    S=(int(b[0])*2+int(b[1]))%3
    if S==0:
        print("普通")
    elif S==1:
        print("吉")
    else:
        print("大吉")
except:
    pass

TOP

  1. M,D=map(int,input().split())
  2. S=(M*2+D)%3
  3. if(S==0):
  4.     print("普通")
  5. elif(S==1):
  6.     print("吉")
  7. else:
  8.     print("大吉")
複製代碼

TOP

返回列表