-
Notifications
You must be signed in to change notification settings - Fork 0
Linguagem
Ricardo Borges edited this page Apr 17, 2014
·
5 revisions
** Função principal **
Show me the code!!
função principal()
fim
** Função Soma **
função soma(a, b) retorne a + b fim
** Estrutura condicional **
se x > 0
retorne x
senão
retorne y
fim
Variáveis
função principal()
variável nome, total
nome = leia()
fim
Repetição
para i = 0 ate 10
imprima(i)
fim
para i = 10 ate 0 decrescente
imprima(i)
fim
repita
imprima(x)
até x == 10
enquanto x < 10
imprima(x)
fim
Vetores
variável v
v[0] = "Olá"
imprima(v[0])
Para inicialização rápida de uma sequência numérica:
v = [0 .. 100]
Para inicialização rápida de um conjunto de elementos:
v = {2; 4; 5; 8; 0; 10}
Expressões
w = x + (z - y) * 100