4. Напишите программу для вычисление значение выражение (a+b)*c+d*e:
k+p*b:a+g * 4:5
enxt:
язык
каакой
Ответы
Ответ дал:
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
Вас заинтересует
1 год назад
1 год назад
1 год назад
1 год назад
3 года назад