#26224: 哪裡出問題?


es911080 (Jiahaw)

學校 : 基隆市私立二信高級中學
編號 : 142606
來源 : [101.136.94.23]
最後登入時間 :
2024-09-16 19:49:38
c461. apcs 邏輯運算子 (Logic Operators) -- apcs | From: [122.99.6.165] | 發表日期 : 2021-07-25 11:24

#include <bits/stdc++.h>
using namespace std;
int main(){
   
    int a,b,c;
    cin >>a>>b>>c;
        if (a==0 and b==0){
            if (c==0) {
                cout <<"AND"<<endl<<"OR"<<endl<<"XOR"<<endl;
            } else cout <<"IMPOSSIBLE"<<endl;
        }
        if (a==0 and b!=0){
            if (c==0){
                cout <<"AND"<<endl;
            }
            if (c==1){
                cout <<"OR"<<endl<<"XOR"<<endl;
            }
        }
        if (a!=0 and b==0){
            if (c==0){
                cout <<"AND"<<endl;
            }
            if (c==1){
                cout <<"OR"<<endl<<"XOR"<<endl;
            }
        }
        if (a!=0 and b!=0){
            if (c==1){
                cout <<"AND"<<endl<<"OR"<<endl;
            }
            if (c==0){
                cout <<"XOR"<<endl;
            }
        }
        cout <<endl;
    
    return 0;
}

 
ZeroJudge Forum