题解
2023-09-12 12:24:12
发布于:广东
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
char a;
cin >> a;
if (a=='y' || a=='Y')
cout << "Yes";
else if (a=='n' || a=='N')
cout << "No";
return 0;
}
这里空空如也
有帮助,赞一个