首页 > 试题广场 >

字符串链接

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

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


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

输入

hello world
good morning

输出

helloworld
goodmorning
while True:
    try:
        print(''.join(list(input().strip().split(' '))))
    except:
        break
发表于 2019-07-31 09:02:35 回复(0)

python solution

import sys
for i in sys.stdin.readlines():
    print(i.strip().replace(" ",""))
发表于 2017-09-08 10:49:34 回复(0)