#include
int reverse_num(int n)
{
int m = n%10;
int i = n/10;
while (i > 0)
{
int a = i%10;
m *= 10;
m += a;
i /= 10;
}
return m;
}
int main()
{
int n = 0;
int m = 0;
printf("Please input a number:\n");
scanf("%d", &n);
printf("The reverse number is : %d\n",reverse_num(n));
return 0;
}
扩展资料
在一个变化过程中,发生变化的量叫变量(数学中,常量为x,而y则随x值的变化而变化),有些数值是不随变量而改变的,我们称它们为常量。
自变量(函数):一个与它量有关联的变量,这一量中的任何一值都能在它量中找到对应的固定值。
因变量(函数):随着自变量的变化而变化,且自变量取唯一值时,因变量(函数)有且只有唯一值与其相对应。
函数值:在y是x的函数中,x确定一个值,y就随之确定一个值,当x取a时,y就随之确定为b,b就叫做a的函数值。