返回列表 發帖

clock() 函式

本帖最後由 tonyh 於 2014-6-14 16:43 編輯

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

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

TOP

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

TOP

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

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.     cout << "計時開始" << endl;
  8.     re:
  9.      system ("pause");
  10.     system ("cls");
  11.     cout << "時間經過了"<< clock ()<<"毫秒"<<endl;
  12.     system("pause");
  13.     goto re;
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"turn on the clock!"<<endl;
  7.     re:
  8. system("pause");
  9. system("cls");
  10. cout<<"經過"<<clock()<<"毫秒!"<<endl;
  11.     goto re;
  12.     return 0;
  13. }
複製代碼

TOP

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

TOP

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

TOP

返回列表