【文件属性】:
文件名称:获取已开机时间(c语言代码)
文件大小:655B
文件格式:TXT
更新时间:2015-10-25 13:33:49
开机时间
获取已开机时间。#include
#include
#include
#include
void sleep( long wait );
void gettime();
void main( void )
{
int flag=1;
char time[128];
_strtime(time);
printf( "OS time:%s\n",time);
//printf( "Delay for one seconds\n" );
cout<<"已开机时间:" < clock() );
}
void gettime(){
int i=GetTickCount();
int h=(i/1000)/3600;
int m=(i/1000)/60-h*60;
int s=(i/1000)-h*3600-m*60;
cout<