题解
2025-01-01 19:35:16
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
#include<string>
using namespace std;
int main(){
string s;
getline(cin,s);
if(s=="How are you!"){
cout<<"Fine!";
}else if(s=="Bye Bye !"){
cout<<"Bye!";
}
return 0;
}
这里空空如也
有帮助,赞一个