Решение:
Python
1 задание:
a = int(input())
x = int(input())
А) print(((x + 5)/4) + ((abs(x - 5)) / x))
Б) print(a * x + 5.2)
В) print(4 * (x ** 2) - 3 * x)
2 задание:
А) 16 % 3 = 1
Б) 25 // 8 = 3
В) 10 % 3 = 1
3 задание:
divmod(8, 3) = (2, 2)
divmod(9, 4) = (2, 1)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Решение:
Python
1 задание:
a = int(input())
x = int(input())
А) print(((x + 5)/4) + ((abs(x - 5)) / x))
Б) print(a * x + 5.2)
В) print(4 * (x ** 2) - 3 * x)
2 задание:
А) 16 % 3 = 1
Б) 25 // 8 = 3
В) 10 % 3 = 1
3 задание:
divmod(8, 3) = (2, 2)
divmod(9, 4) = (2, 1)