Hello there! Lets put our knowledge to practice and make a program!
In this project, you will be making a calculator program. A stupid one at that, but good enough to use out alot of what you learned.
Here is what your calculator program should do:
1: Ask the user to type in a number
2: Ask the user to choose one of the following 4 mathematical operators: + (addition) - (subtraction) * (multiplication) / (division)
3: Ask the user for a second number
4: Print the users math problem to the screen and add the equals (=) symbol at the end. For example:
123 / 34 =
5: Print the answer to the math problem to the screen. Print the full fractional part of the number if there might be one.
6: Ask the user to enter some stuff to exit the program.
That's all! Told you it would be stupid.
Good luck!
