纯新手,来看看呀QAQ 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,k; char a[100],b[100]; gets(a); for…… 题解列表 2022年04月17日 0 点赞 0 评论 88 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:把字符串逆序,然后用字符串的链接函数strcat输出注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[50];…… 题解列表 2018年08月16日 0 点赞 0 评论 528 浏览 评分: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 评论 365 浏览 评分: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 评论 298 浏览 评分:0.0
字符串正反连接(C语言) 摘要:解题思路:先创建一个数组,用来储存输入字符串,再利用循环把字符串反着输出,把两个字符串连接到一个字符串中。注意事项:索引=字符串长度-1参考代码:#include<stdio.h>#include<s…… 题解列表 2021年09月12日 0 点赞 0 评论 120 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码)C++之string类的特性 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstring> #include <string> #include <cmath> #include …… 题解列表 2018年11月08日 1 点赞 0 评论 424 浏览 评分:0.0
先左到右遍历,再右到左,最后输出 摘要:```c #include #include int main(){ char s[110]; scanf("%s",s); int len=strlen(s); for(i…… 题解列表 2022年10月03日 0 点赞 0 评论 112 浏览 评分:0.0
NINA-题解1126:C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:逆序时,只用循环len/2次,然后头尾以此交换。注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a…… 题解列表 2018年03月02日 0 点赞 0 评论 763 浏览 评分: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
C语言训练-字符串正反连接 (C语言 指针 代码) 摘要:解题思路:用的指针,不知道是不是变麻烦了,如有不对或改进方法,求指教注意事项:参考代码:#include<stdio.h>#include<string.h>#define N 50int main(…… 题解列表 2017年12月09日 0 点赞 0 评论 1093 浏览 评分:0.0