• Lenguaje

    C

  • Descripción

    Se solicita que se calcule las ventas por productos por día y obtener un porcentaje del 5% del total de las ventas.

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
26
27
28
29
30
31
32
33
34
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main (void)
{
    float numero_de_productos, porcentaje, precio_del_producto, total_de_las_ventas, venta;
    char tecla_repetir;
    porcentaje = 0;
    total_de_las_ventas = 0;
    do {
        system ("cls");
        printf ("Ingresa el valor de numero de productos: ");
        scanf ("%f", &numero_de_productos);
        (void) getchar ();
        printf ("Ingresa el valor de precio del producto: ");
        scanf ("%f", &precio_del_producto);
        (void) getchar ();
        venta=numero_de_productos*precio_del_producto;
        total_de_las_ventas=total_de_las_ventas+venta;
        printf ("Valor de venta: %g\n", venta);
        putchar ('\n');
        printf ("\250Deseas repetir el proceso? (S/N): ");
        do {
            tecla_repetir = (char) getch();
        } while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
        putchar ('\n');
    } while (tecla_repetir=='s' || tecla_repetir=='S');
    porcentaje=total_de_las_ventas*0.05;
    printf ("Valor de porcentaje: %f\n", porcentaje);
    printf ("Valor de total de las ventas: %f\n", total_de_las_ventas);
    system ("pause");
    return EXIT_SUCCESS;
}