-
Lenguaje
C
-
Descripción
Solicita el ingreso de un número de tres cifras, y que muestra el mismo número con las cifras invertidas.
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)
{
int invertido, numero;
printf ("Ingresa el valor de numero: ");
scanf ("%d", &numero);
(void) getchar ();
invertido=(numero%1000-numero%100)/100+numero%100-numero%10+(numero%10)*100;
printf ("Valor de invertido: %d\n", invertido);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int invertido, numero;
printf ("Ingresa el valor de numero: ");
scanf ("%d", &numero);
(void) getchar ();
invertido=(numero%1000-numero%100)/100+numero%100-numero%10+(numero%10)*100;
printf ("Valor de invertido: %d\n", invertido);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}