• Lenguaje

    C

  • Descripción

    Se ingresa un número de 5 cifras. Mostrar este número al revés.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int inverso, numero;
    printf ("Ingresa el valor de numero: ");
    scanf ("%d", &numero);
    (void) getchar ();
    inverso=(numero%100000-numero%10000)/10000+(numero%10000-numero%1000)/100+(numero%1000-numero%100)+(numero%100-numero%10)*100+(numero%10)*10000;
    printf ("Valor de inverso: %d\n", inverso);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}