#15441: 完全不會再看


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
c461. apcs 邏輯運算子 (Logic Operators) -- apcs | From: [114.42.208.118] | 發表日期 : 2018-10-06 09:06

#include <iostream>
using namespace std;
int main(){
int a,b,c;
while(cin>>a>>b>>c){
if(c==1){
if(a!=0&&b!=0){
cout<<"AND"<<endl;
cout<<"OR"<<endl;
}
else if(a==0&&b!=0){
cout<<"OR"<<endl;
cout<<"XOR"<<endl;
}
else if(a!=0&&b==0){
cout<<"OR"<<endl;
cout<<"XOR"<<endl;
}
else{
cout<<"IMPOSSIBLE"<<endl;
}
}
else{
if(a==0&&b==0){
cout<<"AND"<<endl;
cout<<"OR"<<endl;
cout<<"XOR"<<endl;
}
else if(a!=0&&b!=0){
cout<<"XOR"<<endl;
}
else if(a==0&&b!=0){
cout<<"AND"<<endl;
}
else if(a!=0&&b==0){
cout<<"AND"<<endl;
}
}
}
}

 
ZeroJudge Forum