返回列表 發帖

clock() 函式

clock() 函式能回傳自程式執行開始, 經過的毫秒數!
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼
Su Wa

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼
蔡少宇

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"start";
  7.     system("pause");
  8.     cout<<"共"<<clock()<<"豪秒";   
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼
Jian-wei Wang

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始"<<endl;
  8.     system("pause");   
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒"<<endl;
  10.     system("pause");
  11.     return 0;      
  12. }
複製代碼
Vincent

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"計時開始!"<<endl;
  8.     system("pause");
  9.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.    cout<<"計時開始!"<<endl;
  9.    system("pause");
  10.    cout<<"自程式執行開始,經過"<<clock()<<"毫秒"<<endl;
  11.    
  12.    
  13.    
  14.    system("pause");
  15.    return 0 ;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"計時開始"<<endl;
  7.     system("pause");
  8.     cout<<"從程式開始到現在,經過了"<<clock()<<"毫秒!"<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. #include<ctime>
  5. using namespace std;
  6. int main()
  7. {
  8.     cout<<"計時開始!"<<endl;
  9.     system("pause");
  10.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;
  11.     system("pause");
  12.     return 0;     
  13. }
複製代碼

TOP

返回列表