Answer to Question #284951 in C++ for vicky

Question #284951

print the minimum number in the n given integer.

1 <_ N <_ 10


1
Expert's answer
2022-01-05T14:59:04-0500
a = list(map(int, input().split()))
b = a[0]


for i in range(len(a)):
    b = min(b, a[i])


print(b)

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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog