208k views
5 votes
Using Python Write A Program That Accepts Many Integers As Input, And Outputs The Smallest One. Input The Input Consists Of A Series Of Integers, One Per Line. You Can Assume That There Will Always Be At Least One Number Given. The End Of The Input Will Be Signalled By The Number −1.

1 Answer

5 votes

Final answer:

To find the smallest integer inputted by the user, use a loop to continuously accept user inputs until -1 is entered. Compare each input with the current 'smallest' number and update the value if a smaller number is entered.

Step-by-step explanation:

To find the smallest integer inputted by the user, you can use a loop to continuously accept user inputs until the number -1 is entered. Initialize a variable called 'smallest' with the first inputted number. While accepting inputs, compare each input with the current 'smallest' number and update the value of 'smallest' if a smaller number is entered.

Here is an example program:

smallest = int(input('Enter an integer: '))
while True:
num = int(input('Enter another integer or -1 to exit: '))
if num == -1:
break
if num < smallest:
smallest = num
print('The smallest number is:', smallest)
User Marko Topolnik
by
7.7k points