返回列表 發帖
本帖最後由 張絜晰 於 2023-8-25 20:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.       float sec, start, end=0;
  7.       cout<<"Seconds:";
  8.       cin>>sec;
  9.       start=clock();
  10.       
  11.       while(end<sec*1000){
  12.                           end=clock()-start;
  13.                           cout<<"Countdown:"<<sec-end/1000<<endl;
  14.                           cout<<"Time passed:"<<end/1000<<endl;
  15.                           system("cls");
  16.                           }
  17.       cout<<"Congrats for wasting "<<end<<"seconds!"<<endl;
  18.       system("pause");
  19.       return 0;
  20.       }
複製代碼
Attention Seeker </3

TOP

返回列表