[编程入门]自定义函数之字符串连接-Java 摘要:解题思路:纯属自我记录................注意事项:参考代码:Scanner in = new Scanner(System.in); String a = in.nextLine();…… 题解列表 2021年05月17日 0 点赞 0 评论 495 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:一段简单的代码解决问题 #include #include int main() { char a[10],b[10]; gets(a); gets(b); strcat(a,…… 题解列表 2020年02月05日 0 点赞 1 评论 179 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码)用函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void insert(char*s1,char*s2,char*s){ int i=0…… 题解列表 2018年05月10日 5 点赞 0 评论 714 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include int main() { char a[50], b[50]; gets(a); gets(b); str…… 题解列表 2020年09月14日 0 点赞 0 评论 545 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-调用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> void fun(char a[],char b[],char c[],int lena,i…… 题解列表 2021年09月23日 0 点赞 0 评论 259 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2018年01月15日 10 点赞 2 评论 1317 浏览 评分:6.0
[编程入门]自定义函数之字符串连接 (Java描述) 摘要: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2020年04月28日 0 点赞 0 评论 555 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 思路简单易懂! 摘要:解题思路:注意定义字符串函数的头文件。注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100]; char b[10…… 题解列表 2020年11月27日 0 点赞 0 评论 975 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(Java代码) 摘要:```java public static void main(String[] args) { Scanner input=new Scanner(System.in)…… 题解列表 2020年02月29日 0 点赞 0 评论 715 浏览 评分: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 评论 662 浏览 评分:6.0