Bootstrap

python03_计算圆的面积

一、题目描述

计算圆的面积,输入圆的半径,返回圆的面积。

圆面积公式:S=ΠR^2

二、代码实现

import math

# 计算圆的面积
# math.pi为Π=3.141592653589793
def areaofCircle(r):
    s = math.pi * r * r
    return s


# 结果保留两位小数点,用round()函数
def computerAreaofCircle(r):
    s = math.pi * r * r
    return round(s,2)

print(areaofCircle(2))
print(areaofCircle(4))
print(areaofCircle(6.6))

print(computerAreaofCircle(2))
print(computerAreaofCircle(4))
print(computerAreaofCircle(6.6))

三、运行结果

12.566370614359172
50.26548245743669
136.8477759903714


12.57
50.27
136.85
;