菜鸡写法,分情况就ok 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string>#include<cstring>#include<algorithm>#include<cmath…… 题解列表 2023年12月24日 0 点赞 0 评论 96 浏览 评分:0.0
编写题解 1206: 字符串问题 摘要:##编写题解 1206: 字符串问题 ```cpp #include using namespace std; int main() { string s; cin>>s; fo…… 题解列表 2023年02月04日 0 点赞 0 评论 108 浏览 评分: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
编写题解 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
Hifipsysta-1206-字符串问题(C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { string mystr; …… 题解列表 2022年02月12日 0 点赞 0 评论 111 浏览 评分:0.0
1206: 字符串问题 摘要:这题就是字符串逆序,使用 reverse 函数。#include<bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2021年12月23日 0 点赞 0 评论 193 浏览 评分:0.0
编写题解 1206: 字符串问题(c++) 摘要:解题思路:相同的字符串进行逆转,用两个不同的变量i,j标记,i记录串尾位置,j记录串头位置,用个for循环就好参考代码: #include <iostream>#inclu…… 题解列表 2021年08月19日 0 点赞 0 评论 180 浏览 评分:0.0
字符串问题-题解(C++代码)最好用的一些逆序方法 string 摘要:解题思路: reverse函数是最好用的,它还可以用在其他容器上,具体的可以再学习~注意事项:参考代码:#include<bits/stdc++.h> using namespace …… 题解列表 2020年09月20日 0 点赞 0 评论 166 浏览 评分:0.0