加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
find_cube_root.py 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
# This method is called exhaustive numeration!
# I am checking every possible value
# that can be root of given x systematically
# Kinda brute forcing
def cubeRoot():
x = int(input("Enter an integer: "))
for ans in range(0, abs(x) + 1):
if ans ** 3 == abs(x):
break
if ans ** 3 != abs(x):
print(x, 'is not a perfect cube!')
else:
if x < 0:
ans = -ans
print('Cube root of ' + str(x) + ' is ' + str(ans))
cubeRoot()
cont = str(input("Would you like to continue: "))
while cont == "yes":
cubeRoot()
cont = str(input("Would you like to continue: "))
if cont == "no":
exit()
else:
print("Enter a correct answer(yes or no)")
cont = str(input("Would you like to continue: "))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化