Honor's method (특정 진법의 수를 10진법으로 변환) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 char vect[10]; int result; // a진법을 10진법으로 변환 int honor() { for (int i = 0; vect[i]; ++i) { if (vect[i] >= 'A' && vect[i] 127) result -= 256; } // 10진법을 b진법으로 변환 void reverse_honor() { int temp[100] = { 0 }; int t = 0; while (1) { temp[t++..