-
Lenguaje
C
-
Descripción
Lea un número entero y calcule e imprima el doble y la mitad del numero leido.
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)
{
int doble, mitad, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
doble=un_numero*2;
mitad=un_numero/2;
printf ("Valor de doble: %d\n", doble);
printf ("Valor de mitad: %d\n", mitad);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int doble, mitad, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
doble=un_numero*2;
mitad=un_numero/2;
printf ("Valor de doble: %d\n", doble);
printf ("Valor de mitad: %d\n", mitad);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}