• Lenguaje

    C

  • Descripción

    Determinar el valor a pagar por hospedaje en un determinado hotel, de acuerdo a los siguientes requerimientos:
    1.- Mostrar un menú de opciones donde se muestre el tipo de habitación y su precio: (Sencilla - $25, Doble - $40, Matrimonial - $65). El usuario debe elegir un solo tipo de habitación e indicar el número de días de hospedaje.
    2.- Considerar un descuento del 8% si el número de días de hospedaje es mayor o igual a 3 y sólo para el tipo de habitación matrimonial.

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
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int tipo_de_habitacion;
    float descuento, dias_de_hospedaje, precio, subtotal, total;
    printf ("Ingresa el valor de dias de hospedaje: ");
    scanf ("%f", &dias_de_hospedaje);
    (void) getchar ();
    precio=0;
    printf ("Selecciona el valor de tipo de habitacion.\n");
    printf ("\t1.- Sencilla\n");
    printf ("\t2.- Doble\n");
    printf ("\t3.- Matrimonial\n");
    printf ("\t: ");
    do {
        scanf ("%d", &tipo_de_habitacion);
        (void) getchar ();
        if (tipo_de_habitacion<1||tipo_de_habitacion>3)
            printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
    } while (tipo_de_habitacion<1||tipo_de_habitacion>3);
    if(tipo_de_habitacion==1)
        precio=25;
    if(tipo_de_habitacion==2)
        precio=40;
    if(tipo_de_habitacion==3)
        precio=65;
    subtotal=dias_de_hospedaje*precio;
    if(dias_de_hospedaje>=3&&tipo_de_habitacion==3)
        descuento=subtotal*0.08;
    else
        descuento=0;
    total=subtotal-descuento;
    printf ("Valor de descuento: %g\n", descuento);
    printf ("Valor de precio: %g\n", precio);
    printf ("Valor de subtotal: %g\n", subtotal);
    printf ("Valor de total: %g\n", total);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}