• Lenguaje

    C

  • Descripción

    Convertir una cantidad de grados Fahrenheit a Celsius y Kelvin.

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

int main (void)
{
    float grados_Celsius, grados_Fahrenheit, grados_Kelvin;
    printf ("Ingresa el valor de grados Fahrenheit: ");
    scanf ("%f", &grados_Fahrenheit);
    (void) getchar ();
    grados_Celsius=(grados_Fahrenheit-32)/1.8;
    grados_Kelvin=grados_Celsius+273.15;
    printf ("Valor de grados Celsius: %g\n", grados_Celsius);
    printf ("Valor de grados Kelvin: %g\n", grados_Kelvin);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}