• Lenguaje

    C

  • Descripción

    Una empresa de carga brinda servicio a todo el continente americano, la tarifa que cobra por cada tonelada se muestra en el siguiente cuadro:
    Destinos ($/tonelada)
    Medio de transporte | Norte | Sur | Centro
    Aéreo | 30 | 25 | 20
    Marítimo | 25 | 20 | 15
    Terrestre | 20 | 15| 10
    Así mismo, si la carga que se transporta es perecible, se le incrementa el 7% del pago total de acuerdo a las toneladas.

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
63
64
65
66
67
68
69
70
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int destino, medio_de_transporte, perecible;
    float numero_de_toneladas, pago, tarifa_por_tonelada;
    printf ("Ingresa el valor de numero de toneladas: ");
    scanf ("%f", &numero_de_toneladas);
    (void) getchar ();
    printf ("Selecciona el valor de destino.\n");
    printf ("\t1.- Norte\n");
    printf ("\t2.- Sur\n");
    printf ("\t3.- Centro\n");
    printf ("\t: ");
    do {
        scanf ("%d", &destino);
        (void) getchar ();
        if (destino<1||destino>3)
            printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
    } while (destino<1||destino>3);
    printf ("Selecciona el valor de medio de transporte.\n");
    printf ("\t1.- A\202reo\n");
    printf ("\t2.- Mar\241timo\n");
    printf ("\t3.- Terrestre\n");
    printf ("\t: ");
    do {
        scanf ("%d", &medio_de_transporte);
        (void) getchar ();
        if (medio_de_transporte<1||medio_de_transporte>3)
            printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
    } while (medio_de_transporte<1||medio_de_transporte>3);
    printf ("Selecciona el valor de perecible.\n");
    printf ("\t1.- Si\n");
    printf ("\t2.- No\n");
    printf ("\t: ");
    do {
        scanf ("%d", &perecible);
        (void) getchar ();
        if (perecible<1||perecible>2)
            printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
    } while (perecible<1||perecible>2);
    tarifa_por_tonelada=0;
    if(destino==1&&medio_de_transporte==1)
        tarifa_por_tonelada=30;
    if(destino==2&&medio_de_transporte==1)
        tarifa_por_tonelada=25;
    if(destino==3&&medio_de_transporte==1)
        tarifa_por_tonelada=20;
    if(destino==1&&medio_de_transporte==2)
        tarifa_por_tonelada=25;
    if(destino==2&&medio_de_transporte==2)
        tarifa_por_tonelada=20;
    if(destino==3&&medio_de_transporte==2)
        tarifa_por_tonelada=15;
    if(destino==1&&medio_de_transporte==3)
        tarifa_por_tonelada=20;
    if(destino==2&&medio_de_transporte==3)
        tarifa_por_tonelada=15;
    if(destino==3&&medio_de_transporte==3)
        tarifa_por_tonelada=10;
    pago=tarifa_por_tonelada*numero_de_toneladas;
    if(perecible==1)
        pago=pago*1.07;
    printf ("Valor de pago: %g\n", pago);
    printf ("Valor de tarifa por tonelada: %g\n", tarifa_por_tonelada);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}