C++ 소스코드: 디폴트 인자를 이용한 진법 별(8,10,16진수) 출력
#include using namespace std; enum INT_TYPE {DECIMAL, OCTAL, HEXADECIMAL}; void PrintArray(const int arr[], int size = 5, INT_TYPE type = DECIMAL); int main() { int arr1[] = { 10,20,30,40,50 }; int arr2[10] = { 10,20,30,40,50,60,70,80,90,100 }; PrintArray(arr1); PrintArray(arr1,5,HEXADECIMAL); PrintArray(arr2); PrintArray(arr2,10,OCTAL); return 0; } void PrintArray(const int arr[], int size, INT..
2016. 11. 23.