2 进制如何转化 10 进制呢?输出每个数后就不知道怎么写了。。
#include <stdio.h>#include<math.h>
int Reverse(int num)
{
int c;
if ( num == 0)
return 0;
else
{
c=num%10;
printf("%d ",c);
Reverse(num/10);
}
}
int main()
{
int a;
scanf("%d",&a);
a=Reverse(a);
printf("\n");
}