狗の题解
2024-04-23 21:12:06
发布于:浙江
41阅读
0回复
0点赞
这道题背着选手悄咪咪留空格,真的太狗啦
所以用个getine读一行就可以了
#include<bits/stdc++.h>
using namespace std;
string s;
int main()
{
getline(std::cin,s);
if(s=="How are you!")
{
cout<<"Fine!";
}
if(s=="Bye Bye !")
{
cout<<"Bye!";
}
return 0;
}
这里空空如也
有帮助,赞一个