• Lenguaje

    C

  • Descripción

    Un vendedor recibe una comisión de 10% de sus ventas hechas, si esta fue al menos de s/.10000 y 8.5% en caso contrario. Haga un algoritmo que muestre lo que obtiene un vendedor por comisión.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float comision, ventas_hechas;
    printf ("Ingresa el valor de ventas hechas: ");
    scanf ("%f", &ventas_hechas);
    (void) getchar ();
    if(ventas_hechas>=10000)
        comision=ventas_hechas*0.1;
    else
        comision=ventas_hechas*0.85;
    printf ("Valor de comision: %g\n", comision);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}