AC满分题解
2025-02-03 20:52:31
发布于:浙江
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if(x==1)
{
if(y==1)
{
cout<<"ZhuFan";
}
else if(y==2)
{
cout<<"HeZhou";
}
}
else if(x==2)
{
if(y==1)
{
cout<<"XiaoPingGuo";
}
else if(y==2)
{
cout<<"DongFengPo";
}
else if(y==3)
{
cout<<"GiliGliAi";
}
}
return 0;
}
代码献上
如果不对可能输出的是中英文的问题,可以参考一下题目中的和代码中的。
这里空空如也
有帮助,赞一个