人死后将去往何方?
2024-02-19 13:34:49
发布于:浙江
5阅读
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;
}
这里空空如也
有帮助,赞一个