• Lenguaje

    C

  • Descripción

    Convierte grados Fahrenheit a grados Celsius.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float grados_celsius, grados_fahrenheit;
    printf ("Ingresa el valor de grados fahrenheit: ");
    scanf ("%f", &grados_fahrenheit);
    (void) getchar ();
    grados_celsius=(grados_fahrenheit-32)/1.8;
    printf ("Valor de grados celsius: %g\n", grados_celsius);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}