Commit 9319980b by BellCodeEditor

save project

parent f5de0051
Showing with 5 additions and 4 deletions
......@@ -2,12 +2,12 @@ list1 = []
import time
x=time.time()
print("开始时间为:",x)
for a in range(0, 501):
for b in range(0, 501):
for c in range(0,501):
for a in range(0, 101):
for b in range(0, 201):
for c in range(0,98):
if a**3-b**2==c**2:
print("a,b,c的值分别为:",a,b,c)
y=time.time()
print("结束时间为:",y)
z=x-y
z=y-x
print(z)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment