下面的代碼應該找到for循環的運行時間(以秒爲單位)。看看其他資源,這應該可以做到,在for循環運行後,從clock()
開始clock()
。任何想法爲什麼代碼不能按照書面形式工作?在C中找到一段代碼的運行時間
#include <stdio.h>
#include <time.h>
//prototypes
int rfact(int n);
int temp = 0;
main()
{
int n = 0;
int i = 0;
double result = 0.0;
clock_t t;
printf("Enter a value for n: ");
scanf("%i", &n);
printf("n=%i\n", n);
//get current time
t = clock();
//process factorial 2 million times
for(i=0; i<2000000; i++)
{
rfact(n);
}
printf("n=%i\n", n);
//get total time spent in the loop
result = (double)((clock() - t)/CLOCKS_PER_SEC);
//print result
printf("runtime=%d\n", result);
}
//factorial calculation
int rfact(int n)
{
if (n<=0)
{
return 1;
}
return n * rfact(n-1);
}
你忘了問一個問題。 – 2013-02-25 00:57:07
那真是令人尷尬。 – zakparks31191 2013-02-25 01:03:08