C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:把字符串逆序,然后用字符串的链接函数strcat输出注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[50];…… 题解列表 2018年08月16日 0 点赞 0 评论 529 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:# include<stdio.h># include<string.h>int main(){ int n,i; char a[100]; gets(a); n=str…… 题解列表 2018年04月13日 0 点赞 0 评论 518 浏览 评分:0.0
C语言训练-字符串正反连接-题解(Java代码) 摘要:直接调用reverse()方法即可 ```java package LanQiaoPractice.String; import java.util.Scanner; public cla…… 题解列表 2020年02月16日 0 点赞 0 评论 273 浏览 评分:0.0
字符串正反连接(C语言) 摘要:解题思路:先创建一个数组,用来储存输入字符串,再利用循环把字符串反着输出,把两个字符串连接到一个字符串中。注意事项:索引=字符串长度-1参考代码:#include<stdio.h>#include<s…… 题解列表 2021年09月12日 0 点赞 0 评论 120 浏览 评分:0.0
C语言训练-字符串正反连接-题解(Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class Main { public static void mai…… 题解列表 2021年02月17日 0 点赞 0 评论 91 浏览 评分:0.0
写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int m,i; char str[51]; gets(str); m=st…… 题解列表 2022年03月09日 0 点赞 0 评论 185 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:使用 reverse 函数将字符串反序。#include<bits/stdc++.h> using namespace std; int main(){ string s,temp;…… 题解列表 2021年12月23日 0 点赞 0 评论 224 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s1[100],s2[100]; int i,j=0; …… 题解列表 2019年03月03日 1 点赞 0 评论 442 浏览 评分:0.0
旧物有情 # 字符串正反连接 超简单思路 摘要:``` #include #include #include using namespace std; int n,jin,yin,tong; int main(){ ch…… 题解列表 2024年10月17日 0 点赞 0 评论 62 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码)***指针做法 摘要:```c #include #include int main() { char a[100],b[50]; gets(a); int l=strlen(a); …… 题解列表 2020年09月29日 0 点赞 0 评论 209 浏览 评分:0.0