Предмет: Информатика, автор: garenovfreefare

4. Напишите программу для вычисление значение выражение (a+b)*c+d*e:
k+p*b:a+g * 4:5


enxt: язык
enxt: каакой

Ответы

Автор ответа: pomogi010
0

Ответ:

Объяснение:

a = int(input("Enter the value of a: "))

b = int(input("Enter the value of b: "))

c = int(input("Enter the value of c: "))

d = int(input("Enter the value of d: "))

e = int(input("Enter the value of e: "))

k = int(input("Enter the value of k: "))

p = int(input("Enter the value of p: "))

g = int(input("Enter the value of g: "))

expression = (a+b)*c+d*e+k*p+g*4/5

print("The value of the expression is:", expression)

PYTHON

Похожие вопросы
Предмет: Қазақ тiлi, автор: petrzajneea