Good afternoon guys, all right?
I'm continuing my C exercises, and I'm stuck in one more. Here is the statement of the same:
Write an algorithm that receives a number from the keyboard and tell whether it is divisible by 8, by 5, by 2, or if it is not divisible by any of these. Check for each of the numbers. Example: Number: 8 Divisible by 8 Divisible by 2
My code:
inicio
escreva("Digite um número: ")
leia(num)
d2 <- (num%2)
d5 <- (num%5)
d8 <- (num%8)
soma <- d2+d5+d8
se (soma = 0) entao
escreval("Número não é divisível por nenhuma das opções (2, 4 e 5)")
senao
se (d2 = 0) entao
escreval("Número divisível por 2")
senao
se (d5 = 0) entao
escreval("Número divisível por 5")
senao
se (d8 = 0) entao
escreval("Número divisível por 8")
fimse
fimse
fimse
fimse
fimalgoritmo
Can anyone help me with this?