Rwite a program that finds teh smallest among the five integer inputted by the user
Answers
Answered by
0
Code:
Explanation:
We create a list for the numbers that are going to be entered by the user. A loop is initiated, which will run 5 times, obtaining 5 numbers from the user. As the numbers are being entered, the numbers get added to the list earlier created for the same, using the method. The smallest value is printed using the function along with an appropriate statement.
Similar questions