python
1)
print((4 + 5.78 + 56.45 + 8 + 0.45 + 9.33) / 6)
2) я в геометрии не силен, но сделал вроде бы правильно
from math import sqrt
s_triangle = (3 * sqrt(3**2 - (3**2 / 4))) / 2
s_rectangle = 3 * 2
print(s_triangle + s_rectangle)
3)
x = int(input('Введите x: '))
y = int(input('Введите y: '))
z1 = (sqrt(x**2 + y**2) / abs(x * y)) + abs(2 - x)
z2 = 1 + ((x + (2/(3 * y))) / sqrt(4 + (2 + y)**2)) - 5 * x**3
print(z1, z2)
4)
на картинке
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
python
1)
print((4 + 5.78 + 56.45 + 8 + 0.45 + 9.33) / 6)
2) я в геометрии не силен, но сделал вроде бы правильно
from math import sqrt
s_triangle = (3 * sqrt(3**2 - (3**2 / 4))) / 2
s_rectangle = 3 * 2
print(s_triangle + s_rectangle)
3)
from math import sqrt
x = int(input('Введите x: '))
y = int(input('Введите y: '))
z1 = (sqrt(x**2 + y**2) / abs(x * y)) + abs(2 - x)
z2 = 1 + ((x + (2/(3 * y))) / sqrt(4 + (2 + y)**2)) - 5 * x**3
print(z1, z2)
4)
на картинке