返回列表 發帖

clock() 函式

clock() 函式能回傳從程式執行開始到我呼叫它所經過的毫秒數!
需有<ctime> 標頭檔
  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. }
複製代碼

  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.     cout<<"停止計時";
  9.     system("pause");
  10.     cout<<"開始執行,已經過了"<<clock()<<"毫秒!"<<endl;
  11.    
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Start"<<endl;
  7. system("pause");
  8. cout<<"That was "<<clock()<<" milisec onds"<<endl;
  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. }
複製代碼

TOP

  1. [code]#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;
複製代碼
[/code]

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"Timer started!"<<endl;
  8.     system("pause");
  9.     cout<<"It has been "<<clock()<<" milliseconds"<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼
Attention Seeker </3

TOP

6

TOP

  1. #include<iostream>
  2. #include<ctime>
  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<ctime>
  3. using namespace std;
  4. int main(){

  5.     cout<<"計時開始!"<<endl;
  6.     system("pause");
  7.     cout<<"自程式執行開始,經過了"<<clock()<<"毫秒!"<<endl;

  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

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. #include<ctime>
  4. using namespace std;
  5. int main()
  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<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

返回列表