题解 2850: 输出亲朋字符串
摘要: #include
using namespace std;
const int N=100000;
int main() {
string……
2850: 输出亲朋字符串
摘要:```
#include
using namespace std;
const int N=10010;
int main(){
string a,b;
getline(cin,a);……
2850: 输出亲朋字符串
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char ……
输出亲朋字符串(c++)
摘要:```cpp
#include
using namespace std;
int main(){
string s;
getline(cin,s);//此函数可读取整行,包括……
2850: 输出亲朋字符串
摘要:```cpp
#include
using namespace std;
int main()
{
string s;
getline(cin,s);
char ……
2850: 输出亲朋字符串
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin.getline(……
2850: 输出亲朋字符串
摘要:```
#include
using namespace std;
const int N=100010;
int main(){
string a,b;
getline(cin,a)……