👤

Se citeste un nr nat nenul.Sa se afiseze pe un singur rand cu un spatiu cifrele pare ale nr.
Pseudocod


Răspuns :

Răspuns:

cifre_pare(n)

begin

while n > 0 then

if (n % 10) % 2 = 0 then

print n % 10

print " "

end if

n <- n / 10

end while

end