C语言训练-字符串正反连接-题解(Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in)…… 题解列表 2020年10月11日 0 点赞 0 评论 199 浏览 评分: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
C语言训练-字符串正反连接-题解(Java代码)超简单 摘要:解题思路:注意事项:参考代码: Scanner sr=new Scanner(System.in); String str=sr.next(); …… 题解列表 2020年09月28日 0 点赞 0 评论 304 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main (){ char a[50],b[50],c[50]; gets(a); fo…… 题解列表 2020年07月18日 0 点赞 0 评论 180 浏览 评分:0.0
字符串正反连接(Java实现,超简单) 摘要:解题思路:先用java.io包里面的BufferedReader类来对InputStreamReader类进行包装,实现快速输入字符串以节约时间,然后用完后将输入流关闭。输入完了以后调用java.la…… 题解列表 2020年07月06日 0 点赞 0 评论 584 浏览 评分:9.0
C语言训练-字符串正反连接-题解(C语言代码)务必熟练使用字符串库函数 摘要:解题思路:字符串长度函数:strlen();字符串连接函数:strcat();参考代码:#include<stdio.h> #include<string.h> int fun(char a[],…… 题解列表 2020年06月22日 0 点赞 1 评论 452 浏览 评分:8.7
C语言训练-字符串正反连接-题解(C++代码) 摘要:``````#include #include #include #include #include using namespace std; int main() { st…… 题解列表 2020年04月25日 0 点赞 0 评论 307 浏览 评分:0.0
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语言描述) 摘要:```c #include #include int main() { char s1[100],s2[100]; scanf("%s",s1); int i,j…… 题解列表 2020年04月17日 0 点赞 0 评论 747 浏览 评分:8.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:```c #include int main() { char str[50]; int n=0; gets(str); while (n < strle…… 题解列表 2020年04月15日 0 点赞 0 评论 290 浏览 评分:0.0