编写题解 1206: 字符串问题 摘要:##编写题解 1206: 字符串问题 ```cpp #include using namespace std; int main() { string s; cin>>s; fo…… 题解列表 2023年02月04日 0 点赞 0 评论 107 浏览 评分:0.0
1206: 字符串问题 摘要:```cpp #include #include using namespace std; int main() { char a[300]; gets(a); …… 题解列表 2023年01月05日 0 点赞 0 评论 160 浏览 评分:9.9
编写题解 1206: 字符串问题(最短) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string a;//定义 cin>>a;//输出 …… 题解列表 2022年11月04日 0 点赞 0 评论 128 浏览 评分:0.0
字符串翻转秒解决 摘要:#include #include #include using namespace std; //回文串 int main() { string s1; cin>>s1;…… 题解列表 2022年10月22日 0 点赞 0 评论 95 浏览 评分:0.0
字符串问题 java双指针原地逆序O(n)复杂度 摘要:import java.util.Scanner; public class Main { //时间复杂度 O(n) public static void main(Stri…… 题解列表 2022年07月04日 0 点赞 0 评论 113 浏览 评分:9.9
1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); int len=strlen(str); fo…… 题解列表 2022年06月23日 0 点赞 0 评论 105 浏览 评分:0.0
超级简洁易懂c语言代码 摘要:解题思路:注意事项:一定不要忘记初始化数组,试了好多次都是错的,最后把数组初始化一下就对了!参考代码:#include #include int main () { char sz1[25…… 题解列表 2022年05月13日 0 点赞 0 评论 289 浏览 评分:9.9
编写题解 1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; c…… 题解列表 2022年03月31日 0 点赞 0 评论 73 浏览 评分:0.0
1126:C语言训练-字符串正反连接题解 摘要:解题思路:此题是字符串中比较简单的一题了。我们用一个循环输入字符串,再用一个循环倒序输出一下。则循环参数从字符串的长度-1开始,到0结束,因为字符串的下标从0开始。然后每次循环参数-1,每次输出字符串…… 题解列表 2022年03月29日 0 点赞 0 评论 162 浏览 评分:0.0
题解 1206: 字符串问题 摘要:解题思路:1.首先,定义一个字符串2.运用gets函数输入3.获得字符串的长度4.字符串的长度与数组的实际为序大15.从后向前输出字符串注意事项:参考代码:#include<stdio.h> #in…… 题解列表 2022年03月08日 0 点赞 0 评论 207 浏览 评分:0.0