Python 的π 精確到小數點後16位 import math x = float(input("請輸入x = ")) y = math.sin(x * math.pi) print("y = ",y) ...
確定! 回上一頁