Caja registradora (palabras)

 Algoritmo CajaRegistradoraTexto


    Definir precio, total Como Real

    Definir cantidad Como Entero

    Definir opcion Como Texto

    

    total <- 0

    opcion <- "agregar"

    

    Mientras opcion = "agregar" Hacer

        

        Escribir "Ingrese el precio del producto:"

        Leer precio

        

        Escribir "Ingrese la cantidad:"

        Leer cantidad

        

        total <- total + (precio * cantidad)

        

        Escribir "Escriba 'agregar' para continuar o 'salir' para terminar:"

        Leer opcion

        

    FinMientras

    

    Escribir "El total a pagar es: ", total


FinAlgoritmo

Comentarios

Entradas populares