Jump to content
Fórum Script Brasil
  • 0

Eu estou com muita difuculdade para resolver esse exercicio, podem tir


Aline Freceiro

Question

Boa tarde!!


Preciso que resolva essa questão, não estou conseguindo!!


 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

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...