摘要: 获取系统实时时间 #include <stdio.h> #include <time.h> #include <iostream> int main() { time_t tt; time(&tt); tt = tt + 8 * 3600; // transform the time zone tm 阅读全文
posted @ 2021-03-12 10:35 朱果果 阅读(115) 评论(0) 推荐(0) 编辑