➥r = int(input("請輸入半徑")) ➥area = (r ** 2) * 3.14 ➥c = r * 2 * 3.14 ➥print("圓面積為", area) ➥print("圓周長為", c)