编写题解 1031: [编程入门]自定义函数之字符串反转 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 0 点赞 0 评论 18 浏览 评分:0.0
C++:vector容器简单使用方法_练习 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std ;void ko( vector<…… 题解列表 2025年03月26日 0 点赞 0 评论 75 浏览 评分:0.0
暴力解法--一行代码搞定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; …… 题解列表 2025年03月17日 0 点赞 0 评论 181 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路: 使用getchar( )获取字符; 使用putcahr( )显示字符;注意事项: 输入一个字符串的首地址,可以…… 题解列表 2025年03月07日 0 点赞 0 评论 300 浏览 评分:0.0
C++简单解法 摘要:#include#includeusing namespace std;int str(char a[],char b[]){ int i=0,n; n=strle…… 题解列表 2025年02月28日 0 点赞 0 评论 187 浏览 评分:10.0
极简[编程入门]自定义函数之字符串反转 摘要:解题思路:无注意事项:无参考代码:s = input()print([s::-1]…… 题解列表 2025年01月10日 1 点赞 0 评论 323 浏览 评分:0.0
初学者思路,简单易懂 摘要:解题思路:从字符数组的两边往中间开始交换注意事项:参考代码: #include<stdio.h> #include<string.h> void fun(char*); int main()…… 题解列表 2024年12月29日 6 点赞 1 评论 670 浏览 评分:10.0
多余的string函数 摘要:解题思路:#include<stdio.h> #include<string.h> int main(void) { char a[100]; gets(a); i…… 题解列表 2024年12月28日 0 点赞 0 评论 261 浏览 评分:0.0
字符串反转C语言题解 摘要:解题思路:使用字符串函数strlen获得字符串长度注意事项:记得加上预处理命令#include<string.h>参考代码:#include<stdio.h>#include <string.h>in…… 题解列表 2024年12月25日 0 点赞 0 评论 554 浏览 评分:0.0