📜  立方体查找器 python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.348000             🧑  作者: Mango

代码示例1
a = int(input("Enter the number to find Cube: "))

print("Cube of your number is: ",a**3)