• Lenguaje

    C

  • Descripción

    Se tiene un terreno A cuadrado que mide LADO metros por lado a un precio COSTOA por metro cuadrado y se tiene un terreno B rectangular que mide BASE metros de base y ALTURA metros de altura a un COSTOB por metro cuadrado. Elaborar un algorito que lea los datos de los dos terrenos e imprima cual es el más barato o si cuestan igual.

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)
{
    float ALTURA, BASE, COSTOA, COSTOB, LADO;
    float terreno_A, terreno_B;
    printf ("Ingresa el valor de ALTURA: ");
    scanf ("%f", &ALTURA);
    (void) getchar ();
    printf ("Ingresa el valor de BASE: ");
    scanf ("%f", &BASE);
    (void) getchar ();
    printf ("Ingresa el valor de COSTOA: ");
    scanf ("%f", &COSTOA);
    (void) getchar ();
    printf ("Ingresa el valor de COSTOB: ");
    scanf ("%f", &COSTOB);
    (void) getchar ();
    printf ("Ingresa el valor de LADO: ");
    scanf ("%f", &LADO);
    (void) getchar ();
    terreno_A=LADO*LADO*COSTOA;
    terreno_B=BASE*ALTURA*COSTOB;
    if(terreno_A<terreno_B)
        printf ("El terrneo A es m\240s barato.\n");
    if(terreno_A==terreno_B)
        printf ("Los terrenos cuestan igual.\n");
    if(terreno_A>terreno_B)
        printf ("El terrneo B es m\240s barato.\n");
    printf ("Valor de terreno A: %g\n", terreno_A);
    printf ("Valor de terreno B: %g\n", terreno_B);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}