0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

765. 字符串加空格

https://www.acwing.com/problem/content/submission/code_detail/2613527/
This commit is contained in:
Baoshuo Ren 2020-10-10 21:35:00 +08:00
parent 42646f7d60
commit 86b50a0f4f
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

13
AcWing/765/765.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
c = getchar();
while (c != '\n') {
cout << c << ' ';
c = getchar();
}
return 0;
}