题解 | #求小球落地5次后所经历的路程和第5次反弹的高度#
求小球落地5次后所经历的路程和第5次反弹的高度
http://www.nowcoder.com/practice/2f6f9339d151410583459847ecc98446
h=int(input()) l=h i=1 while i<5: h/=2 l=l+h*2 i+=1 print( '%.6f' %float(l)) print( '%.6f' %float(h/2))
求小球落地5次后所经历的路程和第5次反弹的高度
http://www.nowcoder.com/practice/2f6f9339d151410583459847ecc98446
h=int(input()) l=h i=1 while i<5: h/=2 l=l+h*2 i+=1 print( '%.6f' %float(l)) print( '%.6f' %float(h/2))
相关推荐