3
I’m doing an exercise in visualg, in which the result can be both negative and positive, only I want the results only positive and not negative. How do I get it? What I have so far:
algoritmo "semnome"
// Função :
// Autor :
// Data : 03/01/2018
// Seção de Declarações
var
time1,time2,dife:inteiro
inicio
escreva("quantos gols do time A? ")
leia(time1)
escreva("quantos gols do time B? ")
leia(time2)
dife <- (time1 - time2)
as <- (dife p ou q)
se (dife >=1) e (dife <=3)
escreva("partida normal", dife)
senao
se (dife =0) entao
escreva(normal)
FimSe
FimSe
fimalgoritmo