猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
C++用time.h函数如何调用系统时间和日期
C++用time.h函数如何调用系统时间和日期
梵蒂冈之花
浏览 1089
回答 4
4回答
摇曳的蔷薇
这样用#include <stdio.h>#include <stdlib.h>#include <time.h>int main(){Sleep(1000);printf("1");return 0;}运行这代码你会发现:没有立即输出1Sleep代码要注意两点:1是S要大写,2是它是以毫秒作单位
0
0
0
RISEBY
可以使用localtime()函数#include <stdio.h>#include <time.h>int main (){time_t rawtime;struct tm * timeinfo;time ( &rawtime );timeinfo = localtime ( &rawtime );printf ( "Current local time and date: %s", asctime (timeinfo) );return 0;}
0
0
0
慕标琳琳
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
C++
typedef入门问题
1 回答
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续