-
Lenguaje
C
-
Descripción
Un joven descarga una canción MP3 de internet que pesa en MB y desea saber a cuantos bytes equivale.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float bytes, megabytes;
printf ("Ingresa el valor de megabytes: ");
scanf ("%f", &megabytes);
(void) getchar ();
bytes=megabytes*1024*1024;
printf ("Valor de bytes: %g\n", bytes);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float bytes, megabytes;
printf ("Ingresa el valor de megabytes: ");
scanf ("%f", &megabytes);
(void) getchar ();
bytes=megabytes*1024*1024;
printf ("Valor de bytes: %g\n", bytes);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}