目录 题目 解法 输出结果 题目 给定圆的半径r,求圆的面积。 解法 具体代码如下: #基础练习 圆的面积 import math a=int(input()) result=a**2*math.pi print('%.7f'%result) 输出结果 最后结果如下: