I want to display the sum of the numbers entered as well as the largest and the smallest number entered, only with while
, if
and else
:
contador = 1
maior = 0
menor = 0
S = 0 # 1º NÚMERO A SER SOMADO
while contador <= 5:
num = int(input("Digite o " + str(contador) + "º valor:"))
if num >= maior:
maior = num
if maior < num:
menor = num
S += num
contador += 1
print("A soma de todos os valore é igual a", S)
print("O maior valor digitado foi", maior)
print("O menor valor digitado foi", menor)
The program shows the sum and the highest value, but does not show the smallest value.