字符串正反连接(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char str[]){ char* str1 = str; char* str…… 题解列表 2023年01月05日 0 点赞 0 评论 77 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<ctype.h>int main(…… 题解列表 2018年01月07日 0 点赞 0 评论 619 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路 #include<stdio.h>#include<string.h>main(){ char a[50]; int len,i; gets(a); \\最后一个字符是…… 题解列表 2017年08月06日 0 点赞 0 评论 789 浏览 评分:0.0
使用for循环正向反向遍历 摘要:```c # include # include int main(void){ char a[50]; gets(a); for (int i=0;i=0;i--…… 题解列表 2021年06月07日 0 点赞 0 评论 609 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要: 方法一: #include #include using namespace std; int main() { str…… 题解列表 2020年01月30日 0 点赞 0 评论 355 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:package LiXiTiXh;import java.util.Scanner; public class A1126 { public sta…… 题解列表 2021年03月02日 0 点赞 0 评论 150 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#include#define N 100int main(){ char a[N],b[N]; int i,j; j=0; ge…… 题解列表 2020年12月01日 0 点赞 2 评论 211 浏览 评分:0.0
使用reverse求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ string str; cin>>str; cout<<s…… 题解列表 2022年01月22日 0 点赞 0 评论 196 浏览 评分:0.0
递归逆序进行连接 摘要:f函数代表输出当前长度为n的字符串的最后一个字母,递归终止的条件是字符串长度为0为止,return结束函数 ```c #include #include void f(char *…… 题解列表 2023年03月30日 0 点赞 0 评论 116 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; cin>>str; cout…… 题解列表 2022年03月26日 0 点赞 0 评论 182 浏览 评分:0.0