C_and_CPP 版 (精华区)

发信人: Scorpion (^.*$), 信区: C_and_CPP
标  题: Re: 请问程序执行时间如何计算
发信站: 哈工大紫丁香 (2004年01月05日12:44:06 星期一), 站内信件


#include  <iostream>  
#include  <ctime>  

int  main()  
{  
       using  namespace  std;  
       
       clock_t  start,  end;  
       int  i,j;  
       start  =  clock();  
       //这里是程序部分          
       end  =  clock();  
       cout<<  float(end  -  start)  /  CLK_TCK  <<endl;  
       return  0;  
 
}


【 在 flywithwind (cloud) 的大作中提到: 】

: 请问程序执行时间如何计算。谢谢


--
Two rules to success in life: 
    1.Don't tell people everything you know.
-- Sassan Tat

※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 207.46.71.12]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.168毫秒