This may seem to have a very easy answer, but I'm totally confused. I'm trying to write a program gets two float values from the user. The program should output the equation and answer for the addition, subtraction, multiplication, and division operations.
So you could have something like:
Input: 4 3
Output: 4+3=7 4-3=1 4*3=12 4/3=1.3
I know how to write something that can display the answer from specific variables that I set, but I'm unsure how to write it this way, so it prints those four equations from whichever two numbers the user inputs. Any help you be much appreciated.