题解 1206: 字符串问题

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

筛选

字符串翻转秒解决

摘要:#include #include #include using namespace std; //回文串 int main() { string s1; cin>>s1;……

字符串问题——抽象JAVA

摘要:解题思路:StringBuilder反转参考代码:import java.util.*;public class Main { public static void main(String[] arg……

字符串问题 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int len,i; char a[100]; scanf("%s",a);……

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

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

字符串逆序(2行代码)

摘要:解题思路:没什么思路,当成数组,逆序输出即可。注意事项:参考代码:a = input()print(a[::-1])……