#include "time.h"
#include "stdio.h"
#include "stdlib.h"
int main()
{
system ("color b2");
time_t start,end;
start = time(NULL);
system("pause");
end = time(NULL);
printf("The pause used %-.2f seconds.\n",difftime(end,start));//<-
system("pause");
return ;
} //本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/702547
相关文章
- 08-04c – NTP对分布式时间同步有多好?
- 08-04C++ 系列:虚函数
- 08-04c语言 关于存储一个大于该数值类型范围的数之后的输出结果
- 08-04结构体作业讲解(零基础学习C语言)
- 08-04简单的c语言数据结构的 合并两个表的数据;
- 08-04回顾C++回调函数
- 08-04C语言
- 08-04C语言 main
- 08-04【413】C 语言 Command line
- 08-04c语言之在main中获取命令行的参数