阿be
阿be
题解
题解 | #求解立方根#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #求解立方根#
462 浏览
0 回复
2022-04-06
阿be
+关注
求解立方根
http://www.nowcoder.com/practice/caf35ae421194a1090c22fe223357dca
好暴力的解法,我只能说。。。
a=float(input()) if a>=0: b=a**(1/3) else: b=(-a)**(1/3) b=-b print(round(b,1))
Python3
python
举报
收藏 2
赞 1
评论加载中...