Чему будет равен радиус, если a = 3, b = 4, c = 5?
from math import *
a = int(input("Введите сторону a"))
b = int(input("Введите сторону b"))
c = int(input("Введите сторону c"))
p = (a + b + c) / 2
R = sqrt((p - a) * (p - b) * (p - c) / p)
print("Радиус бассейна =", R)
Введи целое число! Радиус бассейна =
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.