题解列表

筛选

编写题解 1669: 求圆的面积

解题思路:导入math库,进行求面积之后,注意输出小数点后两位注意事项:导入math库参考代码:importmatha=float(input())p=math.pis=a*a*pprint('%.2f'%s)