Posts by Vittor Zeller • 1 point
1 post
-
0
votes7
answers15010
viewsA: Print "n" natural odd numbers
To get the 5 first odd numbers: n = int(input("Digite o valor de n:")) # Inicializações i = 0 # Contador r = 1 # Resultado # Imprima os números ímpares while i < n: i += 1 print(r) r += 2…
pythonanswered Vittor Zeller 1