[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include int main() { int i = 0,j=0; char a[1000], b[500]; fgets(a, sizeof(a)…… 题解列表 2020年01月27日 0 点赞 1 评论 1374 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:一段简单的代码解决问题 #include #include int main() { char a[10],b[10]; gets(a); gets(b); strcat(a,…… 题解列表 2020年02月05日 0 点赞 1 评论 225 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(Java代码) 摘要:```java public static void main(String[] args) { Scanner input=new Scanner(System.in)…… 题解列表 2020年02月29日 0 点赞 0 评论 892 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include void lianjie(char a[],char b[]); int main(){ char a[100],b[100]; gets…… 题解列表 2020年03月11日 0 点赞 0 评论 769 浏览 评分:6.0
[编程入门]自定义函数之字符串连接 (Java描述) 摘要: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2020年04月28日 0 点赞 0 评论 702 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include int main() { char a[50], b[50]; gets(a); gets(b); str…… 题解列表 2020年09月14日 0 点赞 0 评论 681 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 思路简单易懂! 摘要:解题思路:注意定义字符串函数的头文件。注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100]; char b[10…… 题解列表 2020年11月27日 0 点赞 0 评论 1087 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-Java 摘要:解题思路:纯属自我记录................注意事项:参考代码:Scanner in = new Scanner(System.in); String a = in.nextLine();…… 题解列表 2021年05月17日 0 点赞 0 评论 682 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-调用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> void fun(char a[],char b[],char c[],int lena,i…… 题解列表 2021年09月23日 0 点赞 0 评论 318 浏览 评分:6.0
编写题解 1032: [编程入门]自定义函数之字符串连接(c++) 摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri…… 题解列表 2022年05月23日 0 点赞 0 评论 227 浏览 评分:6.0