qudong_huancun[3]=x/1000;
x=x%1000;
qudong_huancun[2]=x/100;
x=x%100;
qudong_huancun[1]=x/10;
qudong_huancun[0]=x%10;
这是我用的两字节16进制转10进制的程序,但现在用到long型的
n_1=98765432;
i[6]=n_1/1000000;
i[5]=n_1/10000;
i[4]=n_1/100;
我就这样的程序就要用到300多个字节,有没有什么方法可以解决??
300多字节太大了啊!! |