Завдання 1)
import math
a = int(input("Введіть a: "))
result = (((a - 2) ** 4) / 4 ) -5
print("Результат: ", result)
Завдання 2)
result = 5 + 3 * (a ** 4) - (a / 5)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Завдання 1)
import math
a = int(input("Введіть a: "))
result = (((a - 2) ** 4) / 4 ) -5
print("Результат: ", result)
Завдання 2)
import math
a = int(input("Введіть a: "))
result = 5 + 3 * (a ** 4) - (a / 5)
print("Результат: ", result)