초(sec)를 시,분,초 포맷으로 바꾸기 int nTotalHour = nSec / 3600; int nTotalMin = nSec % 3600 / 60; int nTotalSec = nSec % 60; C++ 2008.01.31