自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:def lmjp(a,b): print(a+b)a = input()b = input()lmjp(a,b)…… 题解列表 2024年06月03日 0 点赞 0 评论 84 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:我记得之前老师提过最简单的字符串连接方式,就是在输出的时候拼接字符串,能做到在控制台输出就是字符串拼接的效果。或者使用集合来做,将字符串分别加入集合中,然后输出集合元素。注意事项:参考代码:…… 题解列表 2021年09月01日 0 点赞 0 评论 157 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 115 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int fun(char a[],char b[]) { strcat(b,a); …… 题解列表 2019年03月04日 0 点赞 0 评论 331 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接d题解(肥肠de简单) 摘要:解题思路:giao注意事项:giao参考代码:a=input()b=input()print(f"{a} {b}")…… 题解列表 2024年03月24日 0 点赞 0 评论 98 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:```c #include #include int main() { void lian(char a[], char b[]); char a[10], b[10]; gets…… 题解列表 2022年01月18日 0 点赞 0 评论 267 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int i,j; char str1[100…… 题解列表 2017年09月02日 0 点赞 0 评论 630 浏览 评分:0.0
虚晃一枪-《我还是用了这个函数》 摘要:解题思路:注意事项:参考代码:#pragma warning(disable : 4996) #include<stdio.h> #include<string.h> void my_strca…… 题解列表 2022年12月14日 0 点赞 0 评论 72 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:和1031差不多 要点: 要puts的最后一条要加上'\0' ```c #include #include int stick(char a[],char b[]) { i…… 题解列表 2019年08月15日 0 点赞 0 评论 455 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h># define N 80char *MyStract(char *a,char *b);int main(){ char c[2*N…… 题解列表 2021年01月29日 0 点赞 0 评论 273 浏览 评分:0.0