#include /* using std::cout; using std::endl; using std::cin; */ #define _CRT_SECURE_NO_WARNINGS using namespace std; const int name_LENGTH = 20; /* ===========swap 함수=============== void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } void swap(char *a, char *b){ int temp; temp = *a; *a = *b; *b = temp; } */ /*=============직육면체 크기공식 함수========== int BoxVolume(int length, int wi..