Posts by João Vitor • 1 point
1 post
-
0
votes4
answers11856
viewsQ: Higher and lower value problem with while. (No list!)
Write a program that reads an integer N and then read N real numbers, separating the smallest and largest, presenting them on the screen. N = int(input("Digite N: ")) i = 0 ma = 'maior' me = 'menor'…