完美立方数
Posted 2987831760qq-com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了完美立方数相关的知识,希望对你有一定的参考价值。
from math import *
N=int(input())
for i in range (2,N+1):
a=i
for i in range (2,N+1):
b=i
for i in range (b,N+1):
c=i
for i in range (c,N+1):
d=i
if pow(a,3)==pow(b,3)+pow(c,3)+pow(d,3):
print("Cube = {:.0f},Tripe = ({:.0f},{:.0f},{:.0f})".format(a,b,c,d))
以上是关于完美立方数的主要内容,如果未能解决你的问题,请参考以下文章