摘要: void IntToBinaryString(int devisor,char* pBinStr) { int i; int remainder; for(i=0;i> 1; pBinStr[i]=(remainder == 1)?'1':'0'; } pBinStr[8]='\0'; } void mai... 阅读全文
posted @ 2017-02-24 09:37 sky20080101 阅读(146) 评论(0) 推荐(0)