a = float(input('Введите число а: '))
b = float(input('Введите число b: '))
c = float(input('Введите число c: '))
result = (a + b) / c
print(f"Результат функции (a + b) / c = {result}")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = float(input('Введите число а: '))
b = float(input('Введите число b: '))
c = float(input('Введите число c: '))
result = (a + b) / c
print(f"Результат функции (a + b) / c = {result}")