Posts by Victor Henrique • 19 points
2 posts
-
0
votes3
answers380
viewsQ: Loop to determine the smallest entered value
I’m having trouble creating repetitions to get the lowest value out of a given situation. For example, a program that registers price of products in which I have to report the lowest value and the…
-
0
votes1
answer61
viewsQ: Variable returning value that was declared initially and not what the user reported
cont = soma = maiorv = media = 0 r = 'S' menorv = 0 while r in 'Ss': n = int(input('Informe um número inteiro: ')) cont += 1 soma += n if n == 1: maiorv = menorv = n else: if n > maiorv: maiorv =…