English

Write a program that prints the minimum and maximum of five numbers entered by the user. - Computer Science (Python)

Advertisements
Advertisements

Question

Write a program that prints the minimum and maximum of five numbers entered by the user.

Answer in Brief

Solution

Program:
#Program to input five numbers and print the largest and smallest numbers
smallest = 0
largest = 0
for a in range(0,5):
    x = int(input("Enter the number: "))
    if a == 0:
        smallest = largest = x
    if(x < smallest):        
        smallest = x
    if(x > largest):
        largest = x
print("The smallest number is",smallest)
print("The largest number is ",largest)

Explanation of Program:
The first ‘if’ loop will assign the first value entered by the user to the smallest and largest variable.

The subsequent if loop will check the next number entered and if it is smaller than the previous value, it will be assigned to the ‘smallest’ variable, and if greater than the previous value it will be assigned to the 'largest' variable.

After the end of the loop, the values of the ‘smallest’ and ‘largest’ variables are printed.

OUTPUT:
Enter the number: 10
Enter the number: 5
Enter the number: 22
Enter the number: 50
Enter the number: 7
The smallest number is 5
The largest number is 50
shaalaa.com
The ‘For’ Loop
  Is there an error in this question or solution?
Chapter 6: Flow of Control - Exercise [Page 140]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 6 Flow of Control
Exercise | Q 3. | Page 140
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×