首页 > 试题广场 >

字符串链接

[编程题]字符串链接
  • 热度指数:7793 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
不用strcat 函数,自己编写一个字符串链接函数MyStrcat(char dstStr[],charsrcStr[])

输入描述:
两个字符串,字符串由小写字母组成。


输出描述:
链接后的字符串
示例1

输入

hello world
good morning

输出

helloworld
goodmorning
头像 牛客575349009号
发表于 2023-03-20 09:25:14
#include <stdio.h> #include <string.h> int main() { char s1[100],s2[100]; while(scanf("%s%s",s1,s2)!=EOF){ printf("%s%s\ 展开全文
头像 牛客7777779号
发表于 2023-02-23 11:19:18
注意!不要忘记加上字符串结束符'\0' #include <iostream> using namespace std; # define N 1000 void MyStrcat(char dstStr[],char srcStr[]){ char *p = dstStr; 展开全文
头像 用户抉择
发表于 2021-03-29 20:17:00
#include <stdio.h> #include <string.h> void MyStrCat(char dstStr[],char scrStr[]) {     int&n 展开全文
头像 牛客440904392号
发表于 2024-09-30 22:58:06
//C语言版代码 #include <stdio.h> int main() { char s[100], t[100]; while (scanf("%s%s", s, t) != EOF) { printf("%s%s\n 展开全文
头像 whoway
发表于 2020-12-11 16:57:31
一、情况 #include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char a[maxn]; char b[maxn]; char solve[maxn]; void MyStrcat(cha 展开全文
头像 MountainsHao
发表于 2024-03-15 17:08:13
#include <stdio.h> #include <string.h> #include <stdlib.h> char* MyStrcat(char dstStr[], char srcStr[]) { int len1 = strlen(dst 展开全文
头像 也不容易的小白菜很怕黑
发表于 2023-03-24 22:44:40
#include<stdio.h> #include<string.h> #define maxsize 100 void MyStrcat(char dstStr[], char srcStr[]) { int i, j; i = j = 0; 展开全文
头像 chong_0428
发表于 2024-03-03 22:14:48
while True: try: s1, s2 = input().split() print(s1+s2) except: break
头像 小苕
发表于 2023-03-19 19:32:36
#include <stdio.h> #include <string.h> int main() { char a[100]; char b[100]; while (scanf("%s", a) != EOF) { scanf( 展开全文
头像 yeqing2333
发表于 2024-03-19 09:35:51
#include <bits/stdc++.h> using namespace std; //别忘了字符串结束,否则输出脏数据 void MyStract(char dstStr[],char srcStr[]){ int len1=strlen(dstStr); int len2 展开全文