竞赛
考级
#include<bits/stdc++.h> using namespace std; int main(){ char a[1010]; fgets(a,1010,stdin); cout << a; return 0; }
我是体委
题解
苍蓝咏叹
#include <bits/stdc++.h> using namespace std; int main(){ string a; getline(cin,a); for(int i=0;i<a.length();i++){ cout<<a[i]; } return 0; }
张高纶
#include<cstring> #include<iostream> using namespace std; int main(){ char c[1010]; fgets(c,1010,stdin); cout<<c; return 0; }
༺ཌༀ༒死神渡鸦༒ༀཌ༻
久世浮倾
LS_YZY
孟繁奕
240637 刘晓彤
有事找大号
耐高总冠军 张文杰
#include<bits/stdc++.h> using namespace std; int main(){ char c[10000]; fgets (c,10000,stdin); cout << c; return 0; }
毒海皇
古希腊掌管AC的神
_不是哥们跑打AK®
#include <bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); cout<<s<<endl; return 0; }
Voldemort
共34条