返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     int sec;
  9.     double c1,c2;
  10.     int c;
  11.     cout<<"請輸入要數的秒數: ";
  12.     cin>>sec;
  13.     c1=clock();
  14.     while(true)
  15.     {
  16.         c2=clock();
  17.         c=(c2-c1)/1000;
  18.         cout<<(c2-c1)/1000<<"秒!";
  19.         system("cls");
  20.         if(c==sec)
  21.             break;           
  22.     }
  23.     cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
  24.     system("pause");
  25.     system("cls");
  26.     goto re;
  27.     return 0;
  28. }
複製代碼

TOP

返回列表