用DEV_c++怎么编 计算程序运行时间

#include<stdio.h>#include<stdlib.h>#include<time.h>#include<unistd.h>intmain(){clock_... #include<stdio.h>
#include<stdlib.h>
#include<time.h>
# include <unistd.h>
int main()
{
clock_t cBegin = clock();
// do something...
sleep(1);
clock_t cEnd = clock();
printf ("%f",cBegin/ CLOCKS_PER_SEC);
printf ("%f",cEnd/ CLOCKS_PER_SEC);

printf("execution time: %f s", (cEnd - cBegin) / CLOCKS_PER_SEC);

return 0;
}

我的输出不管怎么样都是0;
求解;
展开
 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
五雷轰顶的雷神
2015-08-20 · 超过14用户采纳过TA的回答
知道答主
回答量:24
采纳率:0%
帮助的人:22.8万
展开全部
由于cBegin和cEnd本质是一个long int 变量,CLOCKS_PER_SEC是一个int常量,所以当它们相除结果小于1的,会自动向下取整得到0;
解决方法:将cBegin和cEnd强制转化成float类型即可;例如:
把printf ("%f",cBegin/ CLOCKS_PER_SEC);变为printf ("%f",float(cBegin)/ CLOCKS_PER_SEC);
把printf ("%f",cEnd/ CLOCKS_PER_SEC);变为printf ("%f",float(cEnd)/ CLOCKS_PER_SEC);
把printf("execution time: %f s", (cEnd - cBegin) / CLOCKS_PER_SEC);
变为printf("execution time: %f s", float(cEnd - cBegin) / CLOCKS_PER_SEC);
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式