基于c++string特性的解法,但在vs上测试无问题,在网页验证过不去 摘要:解题思路:利用c++本身的string的特性,来完成解答c++对于string字符串是允许直接对字符串本身进行用[] 的方式来访问字符串中的单个字符,因此,我们只需通过string库…… 题解列表 2024年11月05日 0 点赞 1 评论 60 浏览 评分:9.9
1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<bits/c++.h>using namespace std;int Reverse(…… 题解列表 2024年06月08日 0 点赞 0 评论 110 浏览 评分:9.9
用stl超级简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){stringa,b;cin>>a,b;rev…… 题解列表 2024年04月03日 0 点赞 0 评论 84 浏览 评分:0.0
题解 1031: [编程入门]自定义函数之字符串反转 摘要:###思路逆序输出即可###注意事项要写`for(inti=l-1;i>=0;i--)`1.逆序2.***l-1***###代码```cpp#includeusingnamespacestd;c…… 题解列表 2024年02月06日 0 点赞 0 评论 103 浏览 评分:9.9
四种方法求解字符串反转 摘要:解题思路:关于sizeof(),strlen(),length(),size()chara[100]:定义一个字符数组(使用sizeof和strlen时需要用char定义字符数组)cin>>…… 题解列表 2024年01月19日 0 点赞 0 评论 47 浏览 评分:0.0
利用指针解决字符数组 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>usingnamespacestd;intmain(){ &…… 题解列表 2023年12月26日 0 点赞 0 评论 69 浏览 评分:0.0
c++指针法(指针练习) 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){chararr[100];cin.getline(arr,100)…… 题解列表 2023年12月14日 0 点赞 0 评论 110 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){chara[1000];cin>>a;for…… 题解列表 2023年05月16日 0 点赞 0 评论 78 浏览 评分:9.9
偷了个懒直接调用c++的库函数reverse了 摘要:解题思路:直接偷懒了注意事项:个人建议如果用c写尽量注意char*的结束标志,char[]没有结束标志参考代码:#include<bits/stdc++.h> using…… 题解列表 2023年03月15日 0 点赞 0 评论 51 浏览 评分:0.0
031: [编程入门]自定义函数之字符串反转 摘要:```cpp#include#include#includeusingnamespacestd;//写一函数,使输入的一个字符串按反序存放,//在主函数中输入并输出反序后的字符串(不包含空格)。//输…… 题解列表 2023年02月23日 0 点赞 1 评论 131 浏览 评分:9.9