REALIZAR EN DIAGRAMA DE FLUJO Y PSEUDOCODIGO PROBLEMA : CALCULAR EL TOTAL DE LA COMPRA DE 25 PRODUCTOS
SOLICITAR EL NOMBRE DEL PRODUCTO , EL PRECIO , Y LA CANTIDAD A COMPRAR DE CADA PRODUCTO
AL SUBTOTAL APLICAR EL 25% DE DESCUENTO
INFORMAR NOMBRE DEL PRODUCTO , Y SUBTOTAL POR CADA PRODUCTO , FINALIZADO EL PROBLEMA EL DESCUENTO Y EL TOTAL
Respuestas
Respuesta dada por:
3
Respuesta:
Algoritmo sin_titulo
Dimension nombres[25],cantidad[25],precio[25]
Para i<-1 Hasta 25 Hacer
Escribir 'PRODUCTO ',i
Escribir 'Ingrese nombre'
Leer nombres[i]
Escribir 'Cantidad'
Leer cantidad[i]
Escribir 'Precio'
Leer precio[i]
subt <- subt+(precio[i]*cantidad[i])
FinPara
desc <- subt*0.25
total <- subt-desc
Escribir '- DESCRIPCION | PRECIO | CANTIDAD | SUBTOTAL'
Para i<-1 Hasta 25 Hacer
Escribir '- ',nombres[i],' | ',cantidad[i],' | ',precio[i],' | ',cantidad[i]*precio[i]
FinPara
Escribir 'SUBTOTAL: ',subt
Escribir 'DESCUENTO: ',desc
Escribir 'TOTAL: ',total
FinAlgoritmo
Explicación:
Adjuntos:
mili72979:
ME PODRIAS MANDR LA PRIMERA EXPLICACIÓN DE NUEVO
Preguntas similares
hace 6 años
hace 6 años
hace 6 años
hace 8 años
hace 8 años
hace 9 años