Python 求圓的面積

L'herbe發表於2020-11-01
r=int(input('輸入半徑值:'))
area=3.1415*r*r
print(area)
#保留小數點後兩位
print('{:.2f}'.format(area))```

相關文章