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 评论 631 浏览 评分: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 评论 358 浏览 评分: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 评论 303 浏览 评分: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 评论 224 浏览 评分: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 评论 213 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 340 浏览 评分: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 评论 291 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:先正序输出一遍,再利用倒循环倒着输出一边注意事项: 注意换行符的有无参考代码:#include<iostream> #include<string> using namespac…… 题解列表 2019年03月26日 2 点赞 0 评论 944 浏览 评分:9.3
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s1[100],s2[100]; int i,j=0; …… 题解列表 2019年03月03日 1 点赞 0 评论 433 浏览 评分:0.0
。。比较简单的一种方法。。:C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int k,i; char str[100]; gets(str); pri…… 题解列表 2019年02月21日 3 点赞 0 评论 598 浏览 评分:0.0