返回列表 發帖

clock() 函式

本帖最後由 tonyh 於 2015-10-17 11:56 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"計時開始!!"<<endl;
  7.     system("pause");
  8.     system("cls");
  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<<"計時開始!"<<endl;
  7.     system("pause");
  8.     system("cls");
  9.     cout<<"經過"<<clock()/1000<<"秒!"<<endl;
  10.     system("pause");     
  11.     return 0;   
  12. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

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

TOP

返回列表