If-Else Statement Exercise: Find the Minimum
Write a program from scratch
- Add code to template file ex1_smallest.cppin the replit team project or create it in your IDE.
- Read three integer numbers as input
- Use well formed if-elsestatements to find the minimum of the numbers
- Output the minimum value
- Your results should be similar to this:
        Please enter three integer numbers : -10 15 600 The smallest number is: -10
- Be sure to test with different numbers. What should happen if two or more numbers are tied for smallest?
When you are done:
- Write comments that explain your if statements and boolean expressions. How they work?
- For this exercise, you will have: ex1_smallest.cpp. Complete all the exercises in this lab before uploading the zip file produced by replit.