def nroot(a,b): return float(a**(1/b))x = int(input("請輸入底數數字: "))y = int(input("請輸入次方數字: "))result = nroot(x,y)print(x,"開",y ...
確定! 回上一頁