clock.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 27 行
C
27 行
#include <stdio.h>
#include <math.h>
#include <time.h>
void compute( void )
{
int i, j;
double x;
x = 0.0;
for( i = 1; i <= 100; i++ )
for( j = 1; j <= 100; j++ )
x += sqrt( (double) i * j );
printf( "%16.7f\n", x );
}
void main()
{
clock_t start_time, end_time;
start_time = clock();
compute();
end_time = clock();
printf( "Execution time was %lu seconds\n",
(end_time - start_time) / CLOCKS_PER_SEC );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?