#include <time.h> std::string GetTime() { struct tm local; time_t t; time(&t); localtime_s(&local, (&t)); char acTime[30]; sprintf_s(acTime ...
確定! 回上一頁