Question #291236

 input 5 numbers and find the min?

I want very simple code


Expert's answer

print("Input five numbers into separate lines:")

min_numb = int(input())

for i in range(4):
    numb =int(input())
    if numb < min_numb:
        min_numb = numb

print("The minimal value between inputted numbers is", min_numb)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS