Pseint escriba un seudocódigo que calcule el importe a pagar por un vehículo al circular por una autopista. el vehículo puede ser una bicicleta, una moto, un coche, o un camión. para definir el conjunto vehículos utilizaremos un tipo enumerado. el importe se calculará según los siguientes datos: un importe fijo de 100 soles para las bicicletas las motos y los carros pagarán 30 soles por km. los camiones pagarán 30 soles por km más 25 soles por toneladas la presentación en pantalla de la solución, seráde la forma siguiente: 1. bicicleta 2. moto 3. carro 4. camión 5. salir
Respuestas
Respuesta:
Algoritmo ejercicio7
ESCRIBIR "[1] BICICLETA"
ESCRIBIR "[2] MOTO"
ESCRIBIR "[3] CARRO"
ESCRIBIR "[4] CAMION"
ESCRIBIR "[5] SALIR"
ESCRIBIR "INGRESAR OPCION"
LEER OPC
SEGUN OPC HACER
1:
IT<-100
2:
ESCRIBIR "INGRESE LOS KILOMETROS RECORRIDOS"
LEER KM
IT<-30*KM
3:
ESCRIBIR "INGRESE LOS KILOMETROS RECORRIDOS"
LEER KM
IT<-30*KM
4:
ESCRIBIR "INGRESE LOS KILOMETROS RECORRIDOS"
LEER KM
ESCRIBIR "INGRESE LAS TONELAS CARGADAS EN SU CAMION"
LEER TN
IT<-(30*KM) + (25*TN)
5:
ESCRIBIR "SALISTE"
DE OTRO MODO:
ESCRIBIR "ERROR, OPCION NO DISPONIBLE"
FinSegun
ESCRIBIR "SU IMPORTE TOTAL A PAGAR ES DE: ", IT
FinAlgoritmo
Explicación:
no se como explicar pero ahi esta
A continuación pseudocódigo en pseint que muestra por pantalla el total recaudado por el pago de los vehículos en que circulan por la autopista.
Algoritmo para calcular importe a pagar por un vehículo
- // Definir e inicializar variables
Definir costoBici,costoMotoCarroKm,costoCamionKm,costoCamionTn,importeBici,TotalimporteBici,importeCarro,importeMoto,importeTotal,importeCamion,TotalimporteMoto,TotalimporteCamion,TotalimporteCarro Como Real
Definir continuar, respuesta Como Caracter
continuar <- 's'
costoBici <- 100
costoMotoCarroKm <- 30
costoCamionKm <- 30
costoCamionTn <- 25
- // Ingresar datos
Escribir '****Cálculo de Importe de Vehículo****'
Repetir
Escribir 'Elija Opción'
Escribir '....................'
Escribir '1.- bicicleta'
Escribir '2.- moto'
Escribir '3.- carro'
Escribir '4.- camión '
Escribir '5.- salir '
Escribir '....................'
Escribir 'Ingrese respuesta (1-4) '
Repetir
Leer respuesta
Mientras Que (respuesta<>'1') Y (respuesta<>'2') Y (respuesta<>'3') Y (respuesta<>'4') Y (respuesta<>'5')
- // Procesar datos y mostrar importe
Segun respuesta Hacer
'1':
importeBici <- costoBici
Escribir 'Importe de la bicicleta: ',importeBici
TotalimporteBici <- TotalimporteBici+importeBici
'2':
Escribir 'Ingrese Kilómetros recorridos'
Repetir
Leer km
Hasta Que km>0
importeMoto <- km*costoMotoCarroKm
Escribir 'Importe de la moto: ',importeMoto
TotalimporteMoto <- TotalimporteMoto+importeMoto
'3':
Escribir 'Ingrese Kilómetros recorridos'
Repetir
Leer km
Hasta Que km>0
importeCarro <- km*costoMotoCarroKm
Escribir 'Importe del carro: ',importeCarro
TotalimporteCarro <- TotalimporteCarro+importeCarro
'4':
Escribir 'Ingrese Kilómetros recorridos'
Repetir
Leer km
Hasta Que km>0
Escribir 'Ingrese Toneladas'
Repetir
Leer Tn
Hasta Que Tn>0
importeCamion <- (km*costoCamionKm)+(Tn*costoCamionTn)
Escribir 'Importe del camión: ',importeCamion
TotalimporteCamion <- TotalimporteCamion+importeCamion
'5':
continuar <- 'n'
FinSegun
Hasta Que continuar=='n'
- // mostrar totales
Escribir 'Resultados: '
Escribir '...........................'
Escribir 'Importe total de bicicletas: ',TotalimporteBici
Escribir 'Importe total de motos: ',TotalimporteMoto
Escribir 'Importe total de carros: ',TotalimporteCarro
Escribir 'Importe total de camiones: ',TotalimporteCamion
FinAlgoritmo
Para saber más acerca de algoritmo en pseint de facturación consulte: https://brainly.lat/tarea/57874905
#SPJ2