Computer Science, asked by roshankalliyath, 11 months ago

Write a program python to solve equation of a single variable to find the value of 'x' for ax+b=c.

Answers

Answered by SahilKundra
1

Explanation:

a=int(input("Enter value for a"))

b=int(input("Enter value for b"))

c=ax+b

print("value of x",c)

Similar questions