Write a program that enters three integers and prints them out
in increasing order.
- Begin with this code
- Find the smallest of num1, num2, and num3 and set small to it
- Solution here
- Try 1 1 4 on the above solution... Fix it!
- Find the middle of num1, num2, and num3 and set medium to it
- Solution ??? here
- try again
- Find the largest of num1, num2, and num3 and set large to it
- Solution here