-
Lenguaje
C
-
Descripción
Se considera la siguiente operación aplicable a cualquier número entero positivo:
- Si el número es par, se divide entre 2.
- Si el número es impar, se multiplica por 3 y se suma 1.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int resultado, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
if(un_numero%2==0)
resultado=un_numero/2;
else
resultado=un_numero*3+1;
printf ("Valor de resultado: %d\n", resultado);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int resultado, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
if(un_numero%2==0)
resultado=un_numero/2;
else
resultado=un_numero*3+1;
printf ("Valor de resultado: %d\n", resultado);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}