自定义函数之字符串连接(C语言)
摘要:解题思路:这个题主要是让自己定义个函数进行连接注意事项:自定义函数时形参需要定义,如char参考代码:#include<stdio.h>#include<string.h>void link(char……
题解 1032: [编程入门]自定义函数之字符串连接
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>void Cat(char a1[],char b1[]){ gets(a1); g……
题解 1032: [编程入门]自定义函数之字符串连接
摘要:package ACM01;
import java.util.Scanner;
public class acm027 {
public static void main(Str……
[编程入门]自定义函数之字符串连接-题解(C语言代码)(简便)
摘要:解题思路:这应该是迭代法吧哈哈,迭代递归傻傻分不清注意事项:put遇'\0'结束参考代码:#include<stdio.h>#include<string.h>int main(){ ……
自定义函数之字符串连接
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void s(char a[],char b[]);int main(){ ……
[编程入门]自定义函数之字符串连接-题解(C语言)
摘要:```c
#include
#include
int func(char a[],char b[],char c[])
{
int i;
int n1,n2;
n1=strle……
编写题解 1032: [编程入门]自定义函数之字符串连接
摘要:解题思路:我记得之前老师提过最简单的字符串连接方式,就是在输出的时候拼接字符串,能做到在控制台输出就是字符串拼接的效果。或者使用集合来做,将字符串分别加入集合中,然后输出集合元素。注意事项:参考代码:……
[编程入门]自定义函数之字符串连接-调用函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<string.h>
void fun(char a[],char b[],char c[],int lena,i……
自定义函数之字符串连接-题解(python)
摘要:参考代码:print(input()+input())#将两次输入的字符串相加并显示 ……