。。比较简单的一种方法。。:C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int k,i; char str[100]; gets(str); pri…… 题解列表 2019年02月21日 3 点赞 0 评论 677 浏览 评分: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 评论 519 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k,b[50],j; char a[50]; gets(a); …… 题解列表 2019年04月14日 0 点赞 0 评论 372 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 418 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ char a[60]; int l,i=…… 题解列表 2019年05月05日 0 点赞 0 评论 292 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i=0,n=0; char a[110],b[55]; gets(a…… 题解列表 2019年05月27日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i,len,len1; gets(a);…… 题解列表 2019年05月31日 0 点赞 0 评论 378 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码)。。不怎么符合题意 摘要:解题思路:模拟题意注意事项:无参考代码:#include<stdio.h>#include<string.h>int main(){ char a[51]; int len,i; gets(a); l…… 题解列表 2019年06月02日 0 点赞 0 评论 473 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码)简单易懂 摘要:#include #include int main() { char a[200],b[100]; int i,j=0,k; gets(a); k=strlen(a); f…… 题解列表 2019年06月26日 1 点赞 0 评论 744 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要: 方法一: #include #include using namespace std; int main() { str…… 题解列表 2020年01月30日 0 点赞 0 评论 450 浏览 评分:0.0