I am trying to represent an equation in this format: "a = bx + c"
- If b is 0, it should return “a = c”.
- If c is 0, then it should return “a = bx”
- Also, when c is negative it should not return something like "5 = 8x + -7"
- And when b=1, it should not show the coefficient of x.
Can you help me?