码迷,mamicode.com
首页 > 编程语言 > 详细

MIT Python 第三课一般代码样式 循环式程序 第15分钟:求16的平方根:4

时间:2015-06-25 11:47:04      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

求16的平方根:4

>>> #显示16的平方根
>>> x=16
>>> ans=0
>>> while ans*ans<16:
    ans=ans+1
    print(ans)

    
1
2
3
4
>>> print(ans)
4
>>> 

终极测试中应该是<0 没有=0

>>> x=16
>>> ans=0
>>> while ans*ans<=x:
    ans=ans+1
    print(ans)

    
1
2
3
4
5

 

MIT Python 第三课一般代码样式 循环式程序 第15分钟:求16的平方根:4

标签:

原文地址:http://www.cnblogs.com/hhj187/p/4599421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!