[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s>>b; cout<…… 题解列表 2022年05月06日 0 点赞 0 评论 178 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int T(){ char a[10],b[10]; gets(a); gets…… 题解列表 2022年05月06日 0 点赞 0 评论 87 浏览 评分:0.0
小白数组思想c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define N 100void oppo(char sz1[],char sz2[]){ int m,n,i; m=strlen(…… 题解列表 2022年05月07日 0 点赞 0 评论 100 浏览 评分:0.0
自定义函数之字符串连接 题解(超简单)(c++) 摘要:解题思路:就不是直接输出两个字符串嘛!套个字符串。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string a,b;void zh(s…… 题解列表 2022年05月09日 0 点赞 0 评论 189 浏览 评分:0.0
看到题解有好多朋友不是用的自定义函数,所以搞了一个 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void lianjie(char *a,char *b);int main(){ char a…… 题解列表 2022年05月19日 0 点赞 0 评论 99 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接(c++) 摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri…… 题解列表 2022年05月23日 0 点赞 0 评论 160 浏览 评分:6.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[1000],b[100];gets(a);gets(b);put…… 题解列表 2022年05月24日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:连接两个字符串,需要灵活运用C语言中C函数库中提供的处理字符串的函数,利用gets(str)来获取字符串,然后用strcat连接两个字符串。参考代码:#include<stdio.h>voi…… 题解列表 2022年06月11日 0 点赞 0 评论 213 浏览 评分:6.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char st; while((st=getchar())!=EOF){ if(st==…… 题解列表 2022年06月13日 0 点赞 0 评论 71 浏览 评分:2.0
strlen的灵活运用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,m; char a[20],b[20]; …… 题解列表 2022年06月20日 0 点赞 0 评论 113 浏览 评分:0.0