python求圓的周長和麪積

import math R=float(input(‘請輸入圓的半徑:’)) S=math.pi * R * R L=2 * math.pi * R print(‘圓的面積:’+str(S)+’\n’+‘圓的周長:’+str(L)) #測試結果如下:
相關文章
相關標籤/搜索