题解列表

筛选

求圆的面积-题解(Python代码)

摘要:```python r = float(input())#输入并且 字符转为整型 ans = r*r*3.1415926#公式 print("{:.2f}".format(ans))#格式化输出……