- Python
根号应用1
- 2023-5-26 14:02:24 @
import math
sqrt = math.sqrt
a2 = int(input())
b2 = int(input())
c = sqrt((a2 + b2) * 2)
print(round(c,2))
3 条评论
-
幻月与光 (Ada) LV 8 @ 2023-6-3 16:50:59
谢谢
-
2023-5-26 20:12:58@
是
a * a + b * b
:import math a = int(input()) b = int(input()) c = math.sqrt(a * a + b * b) print(round(c, 2))
-
2023-5-26 14:03:16@
有什么问题?能帮我看一下吗
- 1