• Lenguaje

    C

  • Descripción

    Dado como datos la temperatura en grados Fahrenheit y un continente, determine qué tipo de árbol es recomendable para la reforestación.
    Temperatura | Continente | Tipo de árbol
    85 | América o Europa | Palma de cera
    Entre 85 y 70 | Europa o Asia | Cedro
    Entre 70 y 32 | América | Roble
    Entre 32 y 10 | Oceanía | Pino
    Menor igual a 10 | África | Eucalipto

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

int main (void)
{
    int continente, temperatura;
    printf ("Ingresa el valor de temperatura: ");
    scanf ("%d", &temperatura);
    (void) getchar ();
    printf ("Selecciona el valor de continente.\n");
    printf ("\t1.- \265frica\n");
    printf ("\t2.- Am\202rica\n");
    printf ("\t3.- Asia\n");
    printf ("\t4.- Europa\n");
    printf ("\t5.- Ocean\241a\n");
    printf ("\t: ");
    do {
        scanf ("%d", &continente);
        (void) getchar ();
        if (continente<1||continente>5)
            printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
    } while (continente<1||continente>5);
    if(temperatura==85&&(continente==2||continente==4))
        printf ("Palma de cera\n");
    if(temperatura<=85&&temperatura>=70&&(continente==4||continente==3))
        printf ("Cedro\n");
    if(temperatura<=70&&temperatura>=32&&continente==2)
        printf ("Roble\n");
    if(temperatura<=32&&temperatura>=10&&continente==5)
        printf ("Pino\n");
    if(temperatura<=10&&continente==1)
        printf ("Eucalipto\n");
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}