백준 11005번: 진법 변환 2
-
백준 11005번: 진법 변환 2구현(Implementation) 2018. 7. 29. 16:30
https://www.acmicpc.net/problem/11005 1. 문제10 진수 정수를 입력받은 N 진법으로 변환 하는 문제 2. 알고리즘키워드 - 구현, 진법 변환 3. 코드 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152#include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define MAX_SIZE 100#define INF 0x7fffffff#define CEN..