标签:
求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