题解 | 单词造句
单词造句
https://www.nowcoder.com/practice/c0c7fa7523ea4651bd56b6cbc8c65c66
b=[]
while True:#持续读入
a=input().strip()
if a=='0':
break #终止读入
else:
b.append(a)
print(' '.join(b))
单词造句
https://www.nowcoder.com/practice/c0c7fa7523ea4651bd56b6cbc8c65c66
b=[]
while True:#持续读入
a=input().strip()
if a=='0':
break #终止读入
else:
b.append(a)
print(' '.join(b))
相关推荐
查看12道真题和解析