-
Notifications
You must be signed in to change notification settings - Fork 0
/
036.por
43 lines (39 loc) · 906 Bytes
/
036.por
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
programa
{
//exercício 036
funcao inicio()
{
real tot, toth, horas
escreva ("Quantas horas você se exercitou? ")
leia(horas)
limpa()
se (horas <= 10){
toth = horas*2
tot = toth*0.05
escreva ("Você ganhou R$", tot)
}senao{
se (horas == 10 ou horas <= 20){
toth = horas*5
tot = toth*0.05
escreva ("Você ganhou R$", tot)
}senao{
se (horas > 20){
toth = horas*10
tot = toth*0.05
escreva ("Você ganhou R$", tot)
}
}
}
}
}
/* $$$ Portugol Studio $$$
*
* Esta seção do arquivo guarda informações do Portugol Studio.
* Você pode apagá-la se estiver utilizando outro editor.
*
* @POSICAO-CURSOR = 269;
* @PONTOS-DE-PARADA = ;
* @SIMBOLOS-INSPECIONADOS = ;
* @FILTRO-ARVORE-TIPOS-DE-DADO = inteiro, real, logico, cadeia, caracter, vazio;
* @FILTRO-ARVORE-TIPOS-DE-SIMBOLO = variavel, vetor, matriz, funcao;
*/