首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

在程序中安插计算程序运行时间的函数

2013-06-26 
在程序中插入计算程序运行时间的函数int main(){int i1while(i++)coutover return 0}怎么看这个

在程序中插入计算程序运行时间的函数

int main()
{
int i=1;
while(i++);
cout<<"over ";
return 0;
}

怎么看这个程序运行了多长时间出界? 
[解决办法]
前系统的毫秒,GetTickCount();

    DWORD d1 = GetTickCount();
    int i=1; 
    while(i++); 
    DWORD d2 = GetTickCount();
    cout<<"over " << d2-d1<< endl; 

热点排行