题解 1206: 字符串问题

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

筛选

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

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

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

摘要:解题思路:输入    获取长度  倒序输出注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a……

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

摘要:本题比较简单,大致思路如下: 读入字符串,遍历倒序输出。 我觉得注意的就是方法的选择,以及相应知识点的运用。 第一种方法是最简单的直接倒序输出: ```c #include #includ……

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

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

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

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