-
Lenguaje
C
-
Descripción
Convertir grados Fahrenheit a Celsius y viceversa. El programa deberá leer en primer lugar un número entero que indicará si se va a convertir de grados Fahrenheit a Celsius (1) o de grados Celsius a Fahrenheit (2). Seguidamente leerá el valor de la temperatura, realizará la conversión aplicando la fórmula adecuada e imprimirá el resultado.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int opcion;
float resultado, temperatura;
printf ("Ingresa el valor de temperatura: ");
scanf ("%f", &temperatura);
(void) getchar ();
printf ("Selecciona el valor de opcion.\n");
printf ("\t1.- Fahrenheit a Celsius\n");
printf ("\t2.- Celsius a Fahrenheit\n");
printf ("\t: ");
do {
scanf ("%d", &opcion);
(void) getchar ();
if (opcion<1||opcion>2)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (opcion<1||opcion>2);
if(opcion==1)
resultado=(temperatura-32)/1.8;
else
resultado=1.8*temperatura+32;
printf ("Valor de resultado: %g\n", resultado);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int opcion;
float resultado, temperatura;
printf ("Ingresa el valor de temperatura: ");
scanf ("%f", &temperatura);
(void) getchar ();
printf ("Selecciona el valor de opcion.\n");
printf ("\t1.- Fahrenheit a Celsius\n");
printf ("\t2.- Celsius a Fahrenheit\n");
printf ("\t: ");
do {
scanf ("%d", &opcion);
(void) getchar ();
if (opcion<1||opcion>2)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (opcion<1||opcion>2);
if(opcion==1)
resultado=(temperatura-32)/1.8;
else
resultado=1.8*temperatura+32;
printf ("Valor de resultado: %g\n", resultado);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}