C语言训练-字符串正反连接-题解(C语言代码) 摘要:方法1. #include #include int main() { char a[51]; int s,i,j; gets(a);//读入字符串 printf("%s",…… 题解列表 2020年04月22日 0 点赞 0 评论 284 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[1000],fstr[100]; int i,…… 题解列表 2018年07月27日 0 点赞 0 评论 442 浏览 评分:0.0
字符串正反连接(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char str[]){ char* str1 = str; char* str…… 题解列表 2023年01月05日 0 点赞 0 评论 73 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*所给字符串正序和反序连接,形成新串并输出*/#include <stdio.h>#include <stdlib.h>int main(){ int i,j; cha…… 题解列表 2018年03月08日 0 点赞 0 评论 874 浏览 评分:0.0
C语言训练-字符串正反连接 摘要:解题思路:string reverse注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> #include<algori…… 题解列表 2024年08月11日 1 点赞 0 评论 65 浏览 评分: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 评论 690 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[50]; gets(str); printf("%s",str); int l…… 题解列表 2022年06月23日 0 点赞 0 评论 107 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:strcat 连接两个字符串。参考代码:#include<string.h>#include<stdio.h>int main(){ char arr[102] = { 0 }, …… 题解列表 2024年04月17日 0 点赞 0 评论 124 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:两头的for循环实现拼接功能 中间for循环实现将字符串反向的功能注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k; char …… 题解列表 2018年11月27日 0 点赞 0 评论 589 浏览 评分:0.0
直接用方法了,三行代码。。。(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[] args) {S…… 题解列表 2018年04月06日 1 点赞 0 评论 696 浏览 评分:0.0