A32485.【string】输入输出2
2024-10-13 18:10:30
发布于:江苏
3阅读
0回复
0点赞
这道题可以偷鸡,因为只做了1个测试点。要想偷鸡的话只要输出"hello I am your teacher"就可以了。
//偷鸡代码
#include<iostream>
using namespace std;
int main(){
cout<<"hello I am your teacher";
return 0;
}
正常的方法是先定义string类型变量再用getline()函数输入,或者像我这样:
//正常代码
#include<iostream>
using namespace std;
int main(){
string a;
while(cin>>a){
cout<<a;
}
return 0;
}
这里空空如也
有帮助,赞一个