题解 1206: 字符串问题

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

筛选

菜鸡写法,分情况就ok

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

编写题解 1206: 字符串问题

摘要:解题思路:我们的目标是将输入字符串中的字符位置进行颠倒,也就是让原本在首位的字符挪到末尾,原本在末尾的字符挪到首位,依次类推注意事项:字符位置颠倒操作确定交换范围:利用循环来实现字符的两两交换从而达到……

字符串逆序(2行代码)

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

1206: 字符串问题

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

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

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

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

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