[Algorithm] C++ - 10진수, 2진수 진법 변환 진법 변환 C++에서 각 진법 변환에 대한 예제이다. 10진수에서 2진수 변환 에제 코드 #include using namespace std; int ToBinary(int number); int main() { int n; cout > n; cout Algorithm/이론 2022.11.20