-
Notifications
You must be signed in to change notification settings - Fork 0
/
016.por
36 lines (31 loc) · 844 Bytes
/
016.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
programa
{
//exercício 016
inclua biblioteca Matematica --> mat
funcao inicio()
{
real cigar, anos, a, t, tot, tot_2
escreva ("Quantos cigarros voê fuma por dia? ")
leia(cigar)
limpa()
escreva ("A quantos anos você fuma? ")
leia(anos)
limpa()
t = cigar * 0.007 //0.007 = 10 min em dias
a = anos * 365
tot = t+a
tot_2 = mat.arredondar(tot,2)
escreva ("Você perdeu ", tot_2," dias de vida.")
}
}
/* $$$ Portugol Studio $$$
*
* Esta seção do arquivo guarda informações do Portugol Studio.
* Você pode apagá-la se estiver utilizando outro editor.
*
* @POSICAO-CURSOR = 315;
* @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;
*/