Write a program that reads three double values a, b, c, and solves this equation:
a * x + b = c
Output the value of x.
Guaranteed that a is not 0.
Write a program that reads three double values a, b, c, and solves this equation:
a * x + b = c
Output the value of x.
Guaranteed that a is not 0.
Sample Input 1:
2
-1
2Sample Output 1:
1.5Create a free account to access the full topic