-
Lenguaje
C
-
Descripción
Usted va a adquirir un disco duro para su computador y el vendedor le ofrece tamaños de disco duro expresados en Terabyte. Para lo cual usted realiza análisis del problema que le permite convertir ese valor en Megabyte y en Gigabyte.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 gigabytes, megabytes, terabytes;
printf ("Ingresa el valor de terabytes: ");
scanf ("%f", &terabytes);
(void) getchar ();
gigabytes=terabytes*1024;
megabytes=gigabytes*1024;
printf ("Valor de gigabytes: %g\n", gigabytes);
printf ("Valor de megabytes: %g\n", megabytes);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float gigabytes, megabytes, terabytes;
printf ("Ingresa el valor de terabytes: ");
scanf ("%f", &terabytes);
(void) getchar ();
gigabytes=terabytes*1024;
megabytes=gigabytes*1024;
printf ("Valor de gigabytes: %g\n", gigabytes);
printf ("Valor de megabytes: %g\n", megabytes);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}