题解 1206: 字符串问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1206: 字符串问题

摘要:```cpp #include #include using namespace std; int main() { char a[300]; gets(a); ……

Kanna-字符串问题--C++

摘要:C++在实现字符串逆序时可以使用string头文件中的函数 #include #include using namespace std; int mai……

编写题解 1206: 字符串问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    string str;    c……

字符串问题 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int main() { char a[3……

字符串问题-题解(C++代码)

摘要:解题思路: 直接调用reverse函数,需要头文件algorithm 参考代码: ```cpp #include #include using namespace std; int ma……

菜鸡写法,分情况就ok

摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string>#include<cstring>#include<algorithm>#include<cmath……

1206: 字符串问题

摘要:这题就是字符串逆序,使用 reverse 函数。#include<bits/stdc++.h> using namespace std; int main(){     string s; ……