返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. #include<cmath>
  5. using namespace std;
  6. int main()
  7. {
  8.     float a,b,c;
  9.     cout<<"請輸入秒數"<<endl;
  10.     cin>>a;
  11.     cout<<"計時開始!"<<endl;
  12.     b=clock();
  13.     system("pause");
  14.     while(c<a*1000){
  15.         c=clock()-b;
  16.         cout<<"過了"<<(a*1000-c)/1000<<"秒";
  17.         _sleep(50);
  18.         system("cls");


  19.     }
  20.     cout<<"時間到,過了"<<a<<"秒"<<endl;





  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

返回列表