-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
El gerente de una compañía automotriz cuenta con los N importes de los autos vendidos en el mes de agosto. El gerente desea un algoritmo que realice un reporte con el auto más barato que se vendió, con la media de los importes, y el total de venta en el mes de agosto.
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Proceso VentasDeAgosto
auto_mas_barato <- 0;
media <- 0;
total_de_venta <- 0;
Escribir Sin Saltar "Ingresa el valor de n:";
Leer n;
Para i<-1 Hasta n Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de importe del auto:";
Leer importe_del_auto;
Si i = 1 O importe_del_auto<auto_mas_barato Entonces
auto_mas_barato <- importe_del_auto;
FinSi
total_de_venta <- total_de_venta+importe_del_auto;
Escribir "";
FinPara
Si n = 0 Entonces
media <- 0;
SiNo
media <- total_de_venta/n;
FinSi
Escribir "Valor de auto mas barato: ", auto_mas_barato;
Escribir "Valor de media: ", media;
Escribir "Valor de total de venta: ", total_de_venta;
FinProceso
auto_mas_barato <- 0;
media <- 0;
total_de_venta <- 0;
Escribir Sin Saltar "Ingresa el valor de n:";
Leer n;
Para i<-1 Hasta n Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de importe del auto:";
Leer importe_del_auto;
Si i = 1 O importe_del_auto<auto_mas_barato Entonces
auto_mas_barato <- importe_del_auto;
FinSi
total_de_venta <- total_de_venta+importe_del_auto;
Escribir "";
FinPara
Si n = 0 Entonces
media <- 0;
SiNo
media <- total_de_venta/n;
FinSi
Escribir "Valor de auto mas barato: ", auto_mas_barato;
Escribir "Valor de media: ", media;
Escribir "Valor de total de venta: ", total_de_venta;
FinProceso