1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char a[50],b[50];int i,j;void fun1(char a[]){ j…… 题解列表 2022年01月19日 0 点赞 0 评论 60 浏览 评分:0.0
NINA-题解1126:C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:逆序时,只用循环len/2次,然后头尾以此交换。注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a…… 题解列表 2018年03月02日 0 点赞 0 评论 758 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意字符串结束符注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int main() {…… 题解列表 2021年09月19日 0 点赞 0 评论 109 浏览 评分: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
1126字符串正反连接(数组正反各输出一遍) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; cin >…… 题解列表 2024年06月12日 0 点赞 0 评论 76 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:package LiXiTiXh;import java.util.Scanner; public class A1126 { public sta…… 题解列表 2021年03月02日 0 点赞 0 评论 145 浏览 评分:0.0
旧物有情 # 字符串正反连接 超简单思路 摘要:``` #include #include #include using namespace std; int n,jin,yin,tong; int main(){ ch…… 题解列表 2024年10月17日 0 点赞 0 评论 45 浏览 评分: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#include#define N 100int main(){ char a[N],b[N]; int i,j; j=0; ge…… 题解列表 2020年12月01日 0 点赞 2 评论 208 浏览 评分:0.0
WU-C语言训练-字符串正反连接 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<string.h> int main() { char str[100],str1[100],*p; p=str1; …… 题解列表 2017年12月26日 1 点赞 0 评论 937 浏览 评分:0.0