摘要:
以上代码仅供参考。 阅读全文
摘要:
#include #include int main() { time_t rawtime; struct tm *timeinfo; char buffer[100]; time(&rawtime); timeinfo = localtime(&rawtime); strftime(buffer, 100, "result-%Y_%m_%d_%H_%M_%S.... 阅读全文