高精度的進制轉換

1 #include <stdio.h> 2 #include <string.h> 3 4 char str[1000];//輸入字符串 5 int start[1000],ans[1000],res[1000]; //被除數,商,餘數 6 //res[]存的是餘數,其最後結果的逆序爲所求的結果 7 //轉換前後的進制 8 const int oldBase = 10; 9 c
相關文章
相關標籤/搜索