方法一:
r=int(input('请输入圆半径:'))
s=3.14*pow(r,2)
print('圆面积为:{:.2f}'.format(s))
方法二:
import numpy
r=input('请输入圆半径:')
print('圆面积为:{:.2f}'.format(3.14*(numpy.square(float(r)))))
方法三:
Import math
pi=math.pi
Def circle_area():
r=float(input('请输入半径:'))
s=pi*r*r
print('圆面积为:{:.2f}'.format(s))
circle_area()
方法四:
r=int(input('请输入圆半径:'))
s=3.14*pow(r,2)
print('圆面积为:{:.2f}'.format(s))
圆的周长=2*π*r;圆的面积=π*r*r。
计算圆的面积和周长的代码:
#计算圆的周长和面积:
r=int(input("请输入圆的半径(整数):"))
area=3.14*r*r
C=2*3.14*r
print("圆的面积是:{:.2f}".format(area))
print("圆的周长是:{:.2f}".format(C))