Last active
May 8, 2017 19:20
-
-
Save lrlucena/30a1289f8f54ac5be00b0e969c25a7a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
para i de 1 ate 10 faca { | |
escreva i; | |
i := i + 2 | |
}; | |
escreva i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n := 20; | |
soma := 0; | |
para i de 1 ate n faca { | |
escreva i; | |
n := n - 2; | |
soma := soma + i | |
}; | |
escreva soma | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n := leia; | |
a := 5; | |
para i de 1 ate 10 faca | |
escolha n | |
caso a: escreva a | |
caso 2: exiba "Dois" | |
caso 3: exiba "Tres" | |
outro : {exiba "outro"; a := a - 1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment