• Matéria: Informática
  • Autor: Matheus21312
  • Perguntado 5 anos atrás

ALGUEM ME AJUDA QUESTÃO DE PYTHON

Anexos:

Respostas

respondido por: LeonardoFRa
2

# 1

i = 0

while i < 500:

   i +=1

   if i % 3 == 0 or i % 5 == 0:

       print(i)

#2

i = 500

while i > 1:

   if i % 3 == 0 or i % 5 == 0:

       print(i)

   i -= 1

Perguntas similares