receive the quantity of a product and the value and ask if Qur type any more product if yes have to repeat the process and then show the total

Asked

Viewed 43 times

0

but I need to add up the total of every time

    rodando programa
    {
        funcao inicio()
        {
            cadeia nome
            real val, total
            inteiro quant 
            caracter opcao = 'f'
            enquanto(opcao !='n') {
                escreva("digite o nome do produto")
                leia(nome)
                escreva("digite a quantidade do produto")
                leia(quant)
                escreva("digite o valor unitario")
                leia(val)
                total = quant * val
                escreva("O total da compra foi", total)
                escreva("deseja digitar mais algum produto? (s/n)")
                leia(opcao)
            }
        }
    }
  • Adds a totalGeral variable. Inside while totalGeral = totalGeral + total and writes outside while

  • vlw guy worked

  • Tamo together. I will write the reply to be recorded.

1 answer

0

For research purposes.

Add a total variable that will receive the sum of all totals.

rodando programa
    {
        funcao inicio()
        {
            cadeia nome
            real val, total, totalGeral
            inteiro quant 
            caracter opcao = 'f'
            enquanto(opcao !='n') {
                escreva("digite o nome do produto")
                leia(nome)
                escreva("digite a quantidade do produto")
                leia(quant)
                escreva("digite o valor unitario")
                leia(val)
                total = quant * val
                totalGeral = totalGeral + total
                escreva("O total da compra foi", total)
                escreva("deseja digitar mais algum produto? (s/n)")
                leia(opcao)
            }
        escreva("Soma dos totais:", totalGeral)
        }
    }

Browser other questions tagged

You are not signed in. Login or sign up in order to post.