返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main(){
  6.    
  7.     float start, secs, end=0;
  8.     cout<<"請輸入要倒數的秒數:";
  9.     cin>>secs;
  10.     start=clock();
  11.    
  12.     while(end<secs*1000){
  13.         end=clock()-start;
  14.         cout<<"倒數:"<<(secs*1000-end)/1000<<" 秒!";
  15.         system("cls");
  16.     }
  17.     cout<<"時間到!共經過了"<<end/1000<<"秒";
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表