4-6 zust-sy7-8求圆的面积——python
2024-01-03 09:35:01
在列表中输入多个数据作为圆的半径,(键盘输入,以逗号分开),计算输出相应的圆的面积,并求出最大值、最小值,圆周率为3.14,结果保留2位小数。
输入格式:
输入圆的半径,逗号分隔。
输出格式:
输出相应的圆的面积,并求出最大值、最小值。
输入样例:
在这里给出一组输入。例如:
1.1,2.2,3.3
输出样例:
在这里给出相应的输出。例如:
the area of the circle with the radius of 1.100000 is : 3.80
the area of the circle with the radius of 2.200000 is : 15.20
the area of the circle with the radius of 3.300000 is : 34.19
max area is : 34.19
min area is : 3.80
radius = list(map(eval,input().split(",")))
s = [3.14*r*r for r in radius]
for ss,r in zip(s,radius):
print(f"the area of the circle with the radius of {r:.6f} is : {ss:.2f}")
print(f"max area is : {max(s):.2f}")
print(f"min area is : {min(s):.2f}")
?
文章来源:https://blog.csdn.net/qq_64037242/article/details/135352520
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!