返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     float sec, start, end;
  8.     cout<<"輸入要倒數的秒數!"<<endl;
  9.     cin>>sec;
  10.     start=clock();
  11.     while(true)
  12.     {

  13.         if((clock()-start)/1000>sec)
  14.             break;
  15.         cout<<sec-(clock()-start)/1000<<endl;
  16.         _sleep(50);
  17.         system("cls");
  18.     }
  19.     cout<<"時間到,經過了"<<sec<<"秒!"<<endl;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

返回列表