हिंदी

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

Advertisements
Advertisements

प्रश्न

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

संक्षेप में उत्तर

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 6: Flow of Control - Exercise [पृष्ठ १४०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 6 Flow of Control
Exercise | Q 3. | पृष्ठ १४०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×