您的位置:首页 > Web前端

Life, the Universe, and Everything

2015-09-09 22:51 239 查看
Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely... rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at
input are integers of one or two digits.

Example

Input:
1
2
88
42
99

Output:
1
2
88

 代码如下:

while True:
n = int(input())
if n != 42:
print(n)
else:
break
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: