Advertisements
Advertisements
Question
Write a program that prints the minimum and maximum of five numbers entered by the user.
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
APPEARS IN
RELATED QUESTIONS
What is the purpose of the range() function? Give one example.
Find the output of the following program segment:
for i in range(20,30,2):
print(i)
Find the output of the following program segment:
country = 'INDIA'
for i in country:
print (i)
Write a function to print the table of a given number. The number has to be entered by the user.
Write a program to generate the sequence: –5, 10, –15, 20, –25….. up to n, where n is an integer input by the user.
Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user.
Write a program to print the following pattern:
* * * * * * * * * * * * * |
Write a program to print the following pattern:
1 2 1 2 3 2 1 2 3 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5 |
Write a program to print the following pattern:
1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 |
Write a program to print the following pattern:
* * * * * * * * |