print("1-прямоугольник, 2-треугольник, 3-круг")
figure = input("Выберите фигуру: ")
if figure == '1':
print("Длины сторон прямоугольника:")
a = float(input("a = "))
b = float(input("b = "))
print("Площадь: %.2f" % (a * b))
elif figure == '2':
print("Длины сторон треугольника:")
a = float(input("a = "))
b = float(input("b = "))
c = float(input("c = "))
p = (a + b + c) / 2
from math import sqrt
s = sqrt(p * (p - a) * (p - b) * (p - c))
print("Площадь: %.2f" % s)
elif figure == '3':
r = float(input("Радиус круга R = "))
from math import pi
print("Площадь: %.2f" % (pi * r ** 2))
else:
print("Ошибка ввода")
Объяснение:
1-прямоугольник, 2-треугольник, 3-круг
Выберите фигуру: 2
Длины сторон треугольника:
a = 4
b = 5
c = 6
Площадь: 9.92
Объяснение:
-Hi Ayimgul
-Hi Merey
-How are you?
- I'm fine, don't you think?
- I am also well. Ayimgul, I want you to come to Aktobe for summer vacation. Because I can say that there are wonderful places in Aktobe. For example: the Aktolagai plateau is one of the most popular natural places in the Aktobe region. Here you need to stay for 1-2 days, walk through the snow-capped mountains and caves, see the legendary "Chess Stones" and look for the remains of ancient animals on the rocks, there are many such attractions in Aktobe. I want you to come to Aktobe in the summer.
- Yes, there are wonderful places in Aktobe. I decided to go to Aktobe for the summer vacation.
- Yes, I am looking forward to meeting you!Поделитесь своими знаниями, ответьте на вопрос:
Какое количество информации содержится в слове информатика, если каждый символ кодировать 1 байтом? объем информации сообщения 12288 бит(учитывая, что 1 байт=8 бит) можно выразить как? ( на перевод информации выразить в кбайт) буду !