这个咋改呢~
#include<stdio.h>void conversion()
{
InitStack(S);
scanf("%d",N);
while(N){
push(S,N % 8);
N=N/8;
}
while (!StackEmpty(s)){
Pop(S,e);
printf("%d",e);
}
}//conversion
2014-11-10 09:22
2014-11-10 10:12
2014-11-10 10:25
2014-11-12 10:55
2014-11-12 13:02