Ответы
Ответ дал:
1
№1. Язык python
x = int(input())
y = int(input())
z = int(input())
print('(x+y)^2 = ', (x+y)**2)
print('z^3 = ', z**3)
print('y-z =', y-z)
№3.
a = int(input())
b = int(input())
x = (a+b)**3
y = a**3 + b**3
print('(a+b)^3 = ', (a+b)**3)
print('a^3+b^3 = ', a**3 + b**3)
if x > y:
print('наибольшее:', x)
elif y > x:
print('наибольшее:', y)
picabu2:
2 какое именно задание?
b = int(input())
x = (a+b)**3
y = a**3 + b**3
print('(a+b)^3 = ', (a+b)**3)
print('a^3+b^3 = ', a**3 + b**3)
if x > y:
print('наибольшее:', x)
elif y > x:
print('наибольшее:', y)
Ответ дал:
1
1.
Код:
x = int(input())
y = int(input())
z = int(input())
print((x+y)**2)
print(z**3)
print(y-z)
2.
Нет текста задания
3.
a = int(input())
b = int(input())
n1 = (a+b)**3
n2 = a**3+b**3
highest = max(n1, n2)
print(highest)
Вас заинтересует
2 года назад
2 года назад
2 года назад
2 года назад
8 лет назад
9 лет назад