• Lenguaje

    C

  • Descripción

    Calcular la cuenta en una cevichería con las siguientes variables:
    - Ceviche pequeño $3.50
    - Ceviche grande $5.00
    - Colas $0.50
    - Porción de chifle $0.50
    - Arroz $0.75
    Iva de la cuenta.
    Total de la cuenta.
    La interfaz tiene que ser explicita para el consumidor explicando cada ingreso de forma clara que no confunda al usuario que va a usar el programa.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main (void)
{
    int platillo;
    float IVA, cantidad_de_platillos, importe, precio, precio_del_platillo;
    float subtotal, total;
    char tecla_repetir;
    IVA = 0;
    subtotal = 0;
    total = 0;
    do {
        system ("cls");
        printf ("Ingresa el valor de cantidad de platillos: ");
        scanf ("%f", &cantidad_de_platillos);
        (void) getchar ();
        printf ("Selecciona el valor de platillo.\n");
        printf ("\t1.- Ceviche peque\244o\n");
        printf ("\t2.- Ceviche grande\n");
        printf ("\t3.- Colas\n");
        printf ("\t4.- Porci\242n de chifle\n");
        printf ("\t5.- Arroz\n");
        printf ("\t: ");
        do {
            scanf ("%d", &platillo);
            (void) getchar ();
            if (platillo<1||platillo>5)
                printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
        } while (platillo<1||platillo>5);
        precio_del_platillo=0;
        if(platillo==1)
            precio=3.5;
        if(platillo==2)
            precio=5;
        if(platillo==3)
            precio=0.5;
        if(platillo==4)
            precio=0.5;
        if(platillo==5)
            precio=0.75;
        importe=precio_del_platillo*cantidad_de_platillos;
        subtotal=subtotal+importe;
        printf ("Valor de importe: %g\n", importe);
        printf ("Valor de precio: %g\n", precio);
        printf ("Valor de precio del platillo: %g\n", precio_del_platillo);
        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');
    IVA=subtotal*0.16;
    total=subtotal+IVA;
    printf ("Valor de IVA: %f\n", IVA);
    printf ("Valor de subtotal: %f\n", subtotal);
    printf ("Valor de total: %f\n", total);
    system ("pause");
    return EXIT_SUCCESS;
}