编写题解 1206: 字符串问题(c++) 摘要:解题思路:相同的字符串进行逆转,用两个不同的变量i,j标记,i记录串尾位置,j记录串头位置,用个for循环就好参考代码: #include <iostream>#inclu…… 题解列表 2021年08月19日 0 点赞 0 评论 181 浏览 评分:0.0
字符串逆序(2行代码) 摘要:解题思路:没什么思路,当成数组,逆序输出即可。注意事项:参考代码:a = input()print(a[::-1])…… 题解列表 2021年11月10日 0 点赞 0 评论 273 浏览 评分:0.0
【sor一行流】1206: 字符串问题---python一行解决【python一行流】【一行流】 摘要:解题思路:python处理字符串特别简单,这没有啥显摆的,python就这玩意,能用一行解决的,决不写第二行。注意事项:看代码吧。参考代码:print(input()[::-1])…… 题解列表 2021年11月20日 0 点赞 0 评论 305 浏览 评分:9.9
1206: 字符串问题 摘要:这题就是字符串逆序,使用 reverse 函数。#include<bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2021年12月23日 0 点赞 0 评论 193 浏览 评分:0.0
Hifipsysta-1206-字符串问题(C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { string mystr; …… 题解列表 2022年02月12日 0 点赞 0 评论 111 浏览 评分:0.0
题解 1206: 字符串问题 摘要:解题思路:1.首先,定义一个字符串2.运用gets函数输入3.获得字符串的长度4.字符串的长度与数组的实际为序大15.从后向前输出字符串注意事项:参考代码:#include<stdio.h> #in…… 题解列表 2022年03月08日 0 点赞 0 评论 207 浏览 评分:0.0
1126:C语言训练-字符串正反连接题解 摘要:解题思路:此题是字符串中比较简单的一题了。我们用一个循环输入字符串,再用一个循环倒序输出一下。则循环参数从字符串的长度-1开始,到0结束,因为字符串的下标从0开始。然后每次循环参数-1,每次输出字符串…… 题解列表 2022年03月29日 0 点赞 0 评论 162 浏览 评分:0.0
编写题解 1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; c…… 题解列表 2022年03月31日 0 点赞 0 评论 74 浏览 评分:0.0
超级简洁易懂c语言代码 摘要:解题思路:注意事项:一定不要忘记初始化数组,试了好多次都是错的,最后把数组初始化一下就对了!参考代码:#include #include int main () { char sz1[25…… 题解列表 2022年05月13日 0 点赞 0 评论 289 浏览 评分:9.9
1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); int len=strlen(str); fo…… 题解列表 2022年06月23日 0 点赞 0 评论 106 浏览 评分:0.0