C语言训练-字符串正反连接(用指针) 摘要:```c #include int main() { char a[102]; scanf("%s",a); printf("%s",a); char *p=a; while…… 题解列表 2023年11月15日 0 点赞 0 评论 87 浏览 评分: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 评论 603 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[1000],fstr[100]; int i,…… 题解列表 2018年07月27日 0 点赞 0 评论 443 浏览 评分: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 评论 599 浏览 评分: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 评论 198 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); printf("%s",str); int l…… 题解列表 2022年06月23日 0 点赞 0 评论 108 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n=0; char a[50],b[50]; …… 题解列表 2017年12月20日 0 点赞 0 评论 691 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*所给字符串正序和反序连接,形成新串并输出*/#include <stdio.h>#include <stdlib.h>int main(){ int i,j; cha…… 题解列表 2018年03月08日 0 点赞 0 评论 875 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i; char a[100],b[100]; gets(a); …… 题解列表 2020年12月20日 0 点赞 0 评论 151 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要: 方法一: #include #include using namespace std; int main() { str…… 题解列表 2020年01月30日 0 点赞 0 评论 343 浏览 评分:0.0