#include #include int main( ) {long start,end;start = clock();//测试的程序段end = clock();printf("%ld\n",start-end);//单位:毫秒return 0;}