Board logo

標題: clock() 函式 [打印本頁]

作者: 陳品肇    時間: 2019-5-25 13:15     標題: clock() 函式

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. }
複製代碼

作者: 洪寬瀧    時間: 2019-5-25 14:29

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

作者: 吳孟修    時間: 2019-5-25 14:29

  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. }
複製代碼

作者: 湯郡一    時間: 2019-5-25 14:33

  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. }
複製代碼

作者: 王瑞喻    時間: 2019-5-25 14:34

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

作者: 吳孟書    時間: 2019-5-25 14:34

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

作者: 曲書辰    時間: 2019-5-25 14:34

  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. }
複製代碼

作者: 田宇任    時間: 2019-6-1 12:30

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2