样例输入
0.005
样例输出
3.68
样例输入
0.01
样例输出
13.42
解题代码
lev=1.0 count=0 n=float(input()) for i in range(1,366): if count<5: lev*=1+n count+=1 elif count==6: count=0 else: count+=1 print('%.2f'%(lev))
标签:同学,1.0,增加率,样例,水平,输入 From: https://www.cnblogs.com/hghdbk/p/16716466.html