2014年1月13日
摘要: // 将整数转化为一个任意进制的字符串 static void int_to_string(int value, char* szDest, int type = 10) { bool negative = false; if (value = 0; i--) { szDest[pos] = szTmp[i]; pos++; } szDest[pos] = 0; } static int GetNum(char c) { if (... 阅读全文
posted @ 2014-01-13 13:41 叶飞影 阅读(1634) 评论(1) 推荐(1) 编辑