在主程序中添加注释以说明计算30的5次方根

This commit is contained in:
lwj
2025-06-19 00:54:58 +08:00
parent e4e1a4be1e
commit 192110a5d3

View File

@@ -33,5 +33,5 @@ def GetNthRoot(a,n):
return x1
if __name__ == "__main__":
re = GetNthRoot(30, 5)
re = GetNthRoot(30, 5) #30的5次方根###########################
print(re)