我写了个程序想把二进制的数变八进制,但不知道那里错了,可以运行但没法输出。。。。。。。。/* Note:Your choice is C IDE */#include "stdio.h"void main() //将一个二进制数变成八进制//{int a,m,j;int *s,*top,*base;void push(int *p,int x); //进栈函数//void ...
阅读全文
2007
09-23