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;
}
Question
Aline Freceiro
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.