题解
2024-05-24 21:31:51
发布于:上海
12阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int a,b,c;
cin >> a;
if(a == 1){
cin >> b;
if (b == 1){
cout << "ZhuFan";
}else{
cout << "HeZhou";
}
}else{
cin >> c;
if (c == 1){
cout << "XiaoPingGuo";
}else if(c == 2){
cout << "DongFengPo";
}else{
cout << "GiliGliAi";
}
}
return 0;
}
这里空空如也
有帮助,赞一个