首页 > 编程语言 > 详细

SPOJ Python DAY1: Life, the Universe, and Everything

时间:2014-06-25 22:39:06      阅读:430      评论:0      收藏:0      [点我收藏+]

博主学统计的,学编程多属自学,且入门角度刁钻。用了3年R,深感有掌握一门外语的必要。最近把自己强力掰弯到Python上来,加之自己算法,数据结构学的也十分业余,故拿SPOJ练练手。

刷题之旅开始了。。。

1. Life, the Universe, and Everything

题目用的是STAR TREK 的梗,题目本身很简单,个人觉得也比通常OJ中a+b的开头更有趣些。就是打印输入的整数,遇42停。

##### Filename: SPOJ_1 #####
# Life, the Universe, and Everything
n = int(input())
while n != 42:
  print(n)
  n = int(input()) #Try to understand the meaning of loops and input method
Technorati Tags: ,

SPOJ Python DAY1: Life, the Universe, and Everything,布布扣,bubuko.com

SPOJ Python DAY1: Life, the Universe, and Everything

原文:http://www.cnblogs.com/xmuer/p/3804566.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!