Skip to content
Snippets Groups Projects
Commit 345acf5e authored by marruiz's avatar marruiz :space_invader:
Browse files

Ejemplo while if-else

parent 93536cd8
No related branches found
No related tags found
No related merge requests found
x = 0
while (x < 6) {
if (x % 2 == 0) {
print "Es par " x
} else {
print "Es impar " x
}
x = x + 1
}
print "Mira que majo " x
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment