Informática, perguntado por MariaEdu1001, 10 meses atrás

Ler 3 números inteiros e exibir os números que são divisiveis por 2 e 3.

Soluções para a tarefa

Respondido por BrownCatBlueSky
4

Resposta:

n1 = input(int("Digite o primeiro número:"))

n2 = input(int("Digite o segundo número:"))

n3 = input(int("Digite o terceiro número:"))

if n1 // 2 = 0 and n1 // 3 = 0:

print("{n1} e divisível por 2 e 3")

if n2 // 2 = 0 and n1 // 3 = 0:

print("{n2} e divisível por 2 e 3")

if n3 // 2 = 0 and n1 // 3 = 0:

print("{n3} e divisível por 2 e 3")

Perguntas interessantes