题解 1206: 字符串问题

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

筛选

字符串翻转秒解决

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

1206: 字符串问题

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

1206: 字符串问题

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[1001]; scanf("%[^\n]",str);……

字符串问题——抽象JAVA

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

我奶奶都会

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){    int i;    char a[300];    gets(a)……