簡易計算程式執行時間之程式
2017-09-30
由於程式相當簡單也沒什麼深度,所以我就寫了一篇給自己方便copy用的網誌XD1234567891011121314using namespace std;int main(){ clock_t start,end; start = clock(); /* do something */ end=clock(); printf("Parsern Time: %f seconds\n", (double)(end-start)/CLOCKS_PER_SEC);}