1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char ch1[100],c…… 题解列表 2024年03月12日 0 点赞 0 评论 116 浏览 评分:9.9
无聊的星期六 摘要:凑字数:----------------------------------------------------------------------------------------z=input(…… 题解列表 2024年04月14日 0 点赞 0 评论 96 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:strcat 连接两个字符串。参考代码:#include<string.h>#include<stdio.h>int main(){ char arr[102] = { 0 }, …… 题解列表 2024年04月17日 0 点赞 0 评论 130 浏览 评分:0.0
1126字符串正反连接(数组正反各输出一遍) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; cin >…… 题解列表 2024年06月12日 0 点赞 0 评论 80 浏览 评分:0.0
傻瓜式解决方法 摘要:倒序输出的思路可以从数字类比/图形输出类比就是要将一个过程拆成正反过程 这里类比就是改变循环条件,将循环倒过来 #include #include int main() { i…… 题解列表 2024年06月18日 0 点赞 0 评论 210 浏览 评分:2.0
--------------------字符串拼接------------------------------字符串倒序---------- 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include<string.h> void strcat_custom(char* dest, const char* …… 题解列表 2024年08月03日 0 点赞 0 评论 84 浏览 评分:9.9
多种方法解决,不使用string头文件的解法也有(c语言代码) 摘要:**1)不使用数组,这种做法其实不符合题意,因为你没有连接,你的原数组没有变化** ```c #include #include int main(){ char s[50]; …… 题解列表 2024年08月08日 0 点赞 0 评论 80 浏览 评分:9.9
C语言训练-字符串正反连接 摘要:解题思路:string reverse注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> #include<algori…… 题解列表 2024年08月11日 1 点赞 0 评论 81 浏览 评分:0.0
旧物有情 # 字符串正反连接 超简单思路 摘要:``` #include #include #include using namespace std; int n,jin,yin,tong; int main(){ ch…… 题解列表 2024年10月17日 0 点赞 0 评论 62 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[120]; char b[52]; int i,c=0,j; gets(a…… 题解列表 2024年11月17日 0 点赞 0 评论 113 浏览 评分:0.0