C语言训练-字符串正反连接-题解(Java代码)超简单 摘要:解题思路:注意事项:参考代码: Scanner sr=new Scanner(System.in); String str=sr.next(); …… 题解列表 2020年09月28日 0 点赞 0 评论 319 浏览 评分: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 评论 211 浏览 评分:0.0
简单思路解答 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void fun(char a[],char b[]){ int i,len; // ge…… 题解列表 2023年08月15日 0 点赞 0 评论 77 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路 #include<stdio.h>#include<string.h>main(){ char a[50]; int len,i; gets(a); \\最后一个字符是…… 题解列表 2017年08月06日 0 点赞 0 评论 789 浏览 评分:0.0
C语言训练-字符串正反连接解决方案 摘要:解题思路: 把a数组正反放到b数组内注意事项: 在b数组结尾处需加上‘\0’参考代码:int main(){ char a[100],b[200]; gets(a); int i…… 题解列表 2021年06月25日 0 点赞 0 评论 116 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*所给字符串正序和反序连接,形成新串并输出*/#include <stdio.h>#include <stdlib.h>int main(){ int i,j; cha…… 题解列表 2018年03月08日 0 点赞 0 评论 883 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string s1,s2; cin>>s1;…… 题解列表 2020年03月13日 0 点赞 0 评论 381 浏览 评分:0.0
暴力解法(凑字数。。。。。。。 摘要:解题思路:注意事项:参考代码:n=list(input())m=n.copy()n.reverse()c=m+nfor i in c: print(i,end='')…… 题解列表 2022年12月28日 0 点赞 0 评论 88 浏览 评分:0.0
C语言训练-字符串正反连接-题解(Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in)…… 题解列表 2020年10月11日 0 点赞 0 评论 206 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码)(一维数组) 摘要:第一个是正确的,二三找不到问题,请大神指教 ```c #include #include int main(){ char str[110]; int i; sc…… 题解列表 2021年01月27日 0 点赞 0 评论 318 浏览 评分:0.0