Jump to content
Fórum Script Brasil
  • 0

Estrutura de dados


Aline Freceiro

Question

Bom dia!!

Alguém para resolver esse exercício para mim, por favor!! Preciso com urgência


Reverso do número. Faça uma função que retorne o reverso de um número inteiro informado. Por exemplo: 127 -> 721. 


#include <stdio.h> 

int inverte(int num) { 
int num_inv=0; 
while (num > 0) { 
num_inv = num_inv*10 + num%10; 
num /= 10; 
} 
return num_inv; 
} 

int main() { 
int numero; 
scanf("%d", &numero); 
printf("\n%d - %d\n", numero, inverte(numero)); 
return 0; 
}

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Olá, Tudo bem?

Bem como é só uma simples inversão. Seu codigo ficaria melhor assim:

#include <stdio.h>
#include <stdlib.h>

void Inverte(int Num){                     // Será a função de inversão

long inverso = 0, Manter, lembrar;

for( ; Num > 0 ; ){                       // Não precisa colocar iniciador e nem o somador no for.

lembrar = Num % 10;
inverso = inverso * 10 + lembrar;
Num /= 10;

}
printf("O numero trocado: %ld\n", inverso);           // Imprime o Valor trocado
}

int main(){

system("cls");                    // Comando de estética, pode ignorar... Mas se for usar inclua a <stdlib> 

long num;

printf("Digite o valor: ");
scanf("%ld",&num);
printf("O numero digitado: %ld\n", num);

Inverte(num);

return 0;
}

Espero ter ajudado.

Duvidas?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...