竞赛
考级
getline表示输入,前面写cin,后面写字符名字
xerography
超简单的代码来啦!不到十行轻松搞定!快来看看吧!<( ̄︶ ̄)↗[GO!]😎 题型考查点:连带空格的字符输入输出 喜欢记得点赞欧! 哦!对了,最好关注一下哦~~😁
信奥--小潘 CPZT ACGO
#include<bits/stdc++.h> using namespace std; int main(){ string n; // cin>>n; getline(cin,n); // for(int i=0;i<n.size();i++){ // // } cout<<n; }
qwerty1596
YuQing1919
#include<bits/stdc++.h> using namespace std; int main() { char ch[1001]; gets(ch); cout<<ch; }
四大Tian王
JMZ詹总
——不可抄袭,打造文明ACGO 我和“进步的蜗牛”的小伙伴都在ACGO等你,快用这个专属链接加入我们吧! 点我加入
i am the best™半退
c++好难
极其简单 勿抄,仅作为思路提供!!! (虽然跟抄一样)
YiZhiXianYu
钱某
星舰
对方正在输入...
no
zsy
#include<bits/stdc++.h> using namespace std; int main(){ string a; getline(cin,a); cout<<a; }
复仇者_Happy
6.
151****9879
print(input())
199****3725
#include<iostream> #include<string> using namespace std; string str; void x(string &str){ getline(cin,str); cout << str << endl; } int main(){ x(str); return 0; }
199****9915