Computer Science, asked by PAVANROHITH3901, 10 months ago

Write a program on ax2 + bx + c = 0 and display the output nearest whole number

Answers

Answered by Anonymous
0

Answer:

its a python program

Explanation:

x=int(input("enter the value of x"))

a=int(input("enter the value of a"))

b=int(input("enter the value of b"))

c=int(input("enter the value of c"))

equation=(a*(x**2))+(b*x)+c

print(int(equation))

#HOPE IT HELPS YOU

PLEASE MARK BRAINLIEST

Similar questions