Computer Science, asked by ArpanNagarkoti, 1 day ago

*Write qbasic expression for the algebraic expressions 2b+4c(k*4)

Answers

Answered by samarthkrv
0

Answer:

b = float(input("Enter the value for b:"))

c = float(input("Enter the value for c:"))

k = float(input("Enter the value for k:"))

sol = (2*b) + (4*c) * (k+4)

print("The final value of the exresiion is " , sol)

Explanation:

Similar questions