博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++ 实现等待5s
阅读量:4881 次
发布时间:2019-06-11

本文共 813 字,大约阅读时间需要 2 分钟。

 

#include 
/* puts, printf */#include
/* time_t, struct tm, time, localtime */int main (){ struct tm * timeinfo; double seconds; time_t start_time,now; time (&start_time); while(1){ time (&now); seconds = difftime(now,start_time); if(seconds==5){ break; } } timeinfo = localtime (&start_time); printf ("start_time local time and date: %s", asctime(timeinfo)); timeinfo = localtime (&now); printf ("now local time and date: %s", asctime(timeinfo)); printf("time spend %f\n",seconds); return 0;}

输出

start_time local time and date: Fri May 24 10:24:40 2019now local time and date: Fri May 24 10:24:45 2019time spend 5.000000

 

转载于:https://www.cnblogs.com/sea-stream/p/10916525.html

你可能感兴趣的文章
函数的指针参数强制类型转换异常
查看>>
以ActiveMQ为例JAVA消息中间件学习【2】
查看>>
C#微信公众号——自定义菜单
查看>>
第十五周
查看>>
mysql千万级测试1亿数据的分页分析测试
查看>>
mfcc的特征提取python 代码实现和解析
查看>>
ppt画笔标记在哪里|ppt中画笔工具功能怎么用?
查看>>
可以有效改进项目管理技能的十个过程(转载)
查看>>
python26实例[文件copy和自动rename]
查看>>
Python: Write UTF-8 characters to csv file
查看>>
TypeError: isinstance() arg 2 must be a type or tuple of types
查看>>
BZOJ4813: [Cqoi2017]小Q的棋盘
查看>>
AJAX相关总结
查看>>
VC++ 2010编译错误 fatal error C1189 error This file requires _WIN32_WINNT to be #defined at least...
查看>>
Flash中如何使用滤镜
查看>>
SpringBoot | 第十章:Swagger2的集成和使用
查看>>
bash shell redirecting code block
查看>>
【转】再说一说闭包
查看>>
Creating your own header file in C
查看>>
SSIS安装Oracle数据库连接的配置
查看>>