题解 | #字符串连接#

字符串连接

http://www.nowcoder.com/practice/40d83e5509b04d20825ae68fe35e9ca8

#include <cstdio>

using namespace std;

int  main() {
	char str1[300], str2[100];
	while (scanf("%s%s", str1, str2) != EOF) {
		int i = 0;
		while (str1[i] != '\0') {
			i++;
		}
		int j = 0;
		do {
			str1[i] = str2[j];
			j++;
		}
		while (str1[i++] != '\0');
		printf("%s\n", str1);
	}
	return 0;
}
全部评论
#include<iostream> using namespace std; int main() { char str1[100], str2[100]; while (cin >> str1 >> str2) { int i = 0; while (str1[i] != '\0') i++; int j = 0; while(str2[j]!='\0'){ str1[i]=str2[j]; i++; j++; } cout<<str1><</str1></iostream>
点赞 回复 分享
发布于 2022-06-18 21:01

相关推荐

5 收藏 评论
分享
牛客网
牛客企业服务