• Lenguaje

    C

  • Descripción

    Convierte grados centígrados a grados Fahrenheit y a kelvins

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_centigrados, grados_fahrenheit, kelvins;
    printf ("Ingresa el valor de grados centigrados: ");
    scanf ("%f", &grados_centigrados);
    (void) getchar ();
    kelvins=grados_centigrados+273.15;
    grados_fahrenheit=1.8*grados_centigrados+32;
    printf ("Valor de grados fahrenheit: %g\n", grados_fahrenheit);
    printf ("Valor de kelvins: %g\n", kelvins);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}