-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Atualização do núcleo de Delégua para a versão 0.25.13;
- Alguma organização do projeto.
- Loading branch information
1 parent
b3e440a
commit 60e22fc
Showing
7 changed files
with
81 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
algoritmo "negativos" | ||
|
||
var | ||
|
||
n, i: inteiro | ||
vet: vetor [0..9] de inteiro | ||
|
||
inicio | ||
|
||
escreval("Quantos numeros voce vai digitar? ") | ||
leia(n) | ||
|
||
para i de 0 ate n-1 faca | ||
escreval("Digite um numero: ") | ||
leia(vet[i]) | ||
fimpara | ||
|
||
escreval(" ") | ||
escreval("NUMEROS NEGATIVOS") | ||
|
||
para i de 0 ate n-1 faca | ||
se (vet[i] < 0) entao | ||
escreval(vet[i]) | ||
fimse | ||
fimpara | ||
|
||
fimalgoritmo |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -337,10 +337,10 @@ | |
resolved "https://registry.yarnpkg.com/@designliquido/delegua-tempo/-/delegua-tempo-0.0.1.tgz#964834d127354857cda1c388f5de9327735b6747" | ||
integrity sha512-/O1/eXlTXPTWSZGZ862i6uHHKCW0cmP6KnOV29zK4d4hgn03QjcNDeFKVC9L9vz3OJ6pPY0d/S8ANJkgBnnoaQ== | ||
|
||
"@designliquido/[email protected].12": | ||
version "0.25.12" | ||
resolved "https://registry.yarnpkg.com/@designliquido/delegua/-/delegua-0.25.12.tgz#cb76ac0ff7305f3438ea118b6d47cf64de1a5a7d" | ||
integrity sha512-/pIPBJX+1cu9bSb88q8sHEs5TWUhVA6L/B//up4avgSc2tjmzhTR3sWKWg+hjTtrqTDgmhdsSzA2//arObJj3Q== | ||
"@designliquido/[email protected].13": | ||
version "0.25.13" | ||
resolved "https://registry.yarnpkg.com/@designliquido/delegua/-/delegua-0.25.13.tgz#02cb5e371b08c0025f42833969a5e2fcb51b19b2" | ||
integrity sha512-kKdZenbNODJ9iqiBhoXoxiSgSozh/mSK+uKIBGYpl7mR1T8sG/eqIBaik2qDtrOiBp6tngHKVArVZ4qVut/dzA== | ||
dependencies: | ||
antlr4ts "^0.5.0-alpha.4" | ||
browser-process-hrtime "^1.0.0" | ||
|