これは、関数が呼び出された瞬間の静的時間を表示するだけです...実行時間をどのように表示しますか?つまり、時刻が12:00から12:01に変わると、画面に自動的に表示されます。基本的に、cmd画面の上部に実行中の時計を出力し、その下に他のオプションなどを表示したいと思います。
//http://stackoverflow.com/questions/997946/c-get-current-time-and-date
// Get current date/time, format is YYYY-MM-DD.HH:mm:ss
const string currentDateTime() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
// Visit http://www.cplusplus.com/reference/clibrary/ctime/strftime/
// for more information about date/time format
strftime(buf, sizeof(buf), "%Y-%m-%d.%X", &tstruct);
return buf;
}