Elaborar un programa que realice lo que se solicita a continuación.
1.Que pida el valor de 3 productos.
2.Calcule el sub-total (suma), el descuento (si la suma de los tres productos es mayor que 300 aplicarle un descuento del 10%, de lo contrario su descuento será =0), total a pagar (tomando en cuenta el descuento del 0 o 10 %).
3.Mostrar en pantalla como resultado final el sub-total, el descuento y el total a pagar.
Ayudaaa
jrbv2020:
en que lenguaje de programacion?
Respuestas a la pregunta
Contestado por
3
Proceso ProgramaProductos
Definir prod1,prod2,prod3,subtotal,descuento, total Como Real;
Escribir "Ingrese Valor Producto 1";
Leer prod1;
Escribir "Ingrese Valor Producto 2";
Leer prod2;
Escribir "Ingrese Valor Producto 3";
Leer prod3;
subtotal<-(prod1+prod2+prod3);
si subtotal>300 Entonces
descuento<-subtotal*0.1;
SiNo
descuento<-0;
FinSi
total<-subtotal-descuento;
Escribir "Subtotal: $",subtotal;
Escribir "Descuento: $",descuento;
Escribir "Total: $",total;
FinProceso
Adjuntos:
#include
using namespace std;
int main(int argc, char *argv[])
{
float prod1=0,prod2=0,prod3=0,subtotal=0,desc=0,total=0;
cout<<"Ingrese Valor Producto 1: ";
cin>>prod1;
cout<<"Ingrese Valor Producto 2: ";
cin>>prod2;
cout<<"Ingrese Valor Producto 3: ";
cin>>prod3;
subtotal=(prod1+prod2+prod3);
if(subtotal>300)
{
desc=subtotal*.1;
}
else
{
desc=0;
}
total=subtotal-desc;
cout<<"\nSubtotal: $"< cout<<"Descuento: $"< cout<<"Total: $"< getch();
return 0;
}
Otras preguntas
Castellano,
hace 3 meses
Historia,
hace 3 meses
Religión,
hace 6 meses
Química,
hace 10 meses
Química,
hace 10 meses