#18046: 讀入測資問題


eric.wu090901@gmail.com (柚柚 eric)

學校 : 元智大學
編號 : 70264
來源 : [140.138.17.104]
最後登入時間 :
2019-06-15 09:23:06
c461. apcs 邏輯運算子 (Logic Operators) -- apcs | From: [220.142.83.171] | 發表日期 : 2019-06-13 23:32

x=1
while x>0 :
    a,b,c=map(int,input().split())
    if a==0 and b==0 and c==0 :
        print('AND')
        print('OR')
        print('XOR')
    elif a!=0 and b==0 :
        if c==0 :
            print('AND')
       else :
            print('OR')
            print('XOR')
    elif a==0 and b!=0 :
        if c==0 :
            print('AND')
        else :
            print('OR')
            print('XOR')
    elif a!=0 and b!=0 :
        if c==0 :
            print('XOR')
        else :
            print('AND')
            print('OR')
    else :
        print('IMPOSSIBLE')

顯示NA

在其他編譯器運作是沒有問題的

請各位大大幫忙~~

 
#24417: Re:讀入測資問題


qqq123456 (suiyu)

學校 : 高雄市立高雄高級工業職業學校
編號 : 137318
來源 : [1.172.174.223]
最後登入時間 :
2023-05-07 21:40:02
c461. apcs 邏輯運算子 (Logic Operators) -- apcs | From: [114.39.219.20] | 發表日期 : 2021-02-16 18:50

 

 

加 try 和 except 就好了

 

 
ZeroJudge Forum