AC!!!
2023-12-18 21:07:07
发布于:广东
139阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int n, x;
cin >> n;
if(n == 1){
cin >> x;
if(x == 1){
cout << "ZhuFan";
}else if(x == 2){
cout << "HeZhou";
}
}else if(n == 2){
cin >> x;
if(x == 1){
cout << "XiaoPingGuo";
}else if(x == 2){
cout << "DongFengPo";
}else if(x == 3){
cout << "GiliGliAi";
}
}
return 0;
}
这里空空如也
有帮助,赞一个