intmain(){ // 获取当前系统时间戳(秒) time_tcurrent_time; time(¤t_time); // 转换为本地时间结构体 structtm*local_time=localtime(¤t_time); // 格式化输出 charformatted_time[30]; // 获取当前毫秒数 structtimespec ts; clock_gettime(CLOCK_REALTIME,&ts); longmilliseconds=ts.tv_...