本帖最後由 張絜晰 於 2023-8-25 20:10 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- float sec, start, end=0;
- cout<<"Seconds:";
- cin>>sec;
- start=clock();
-
- while(end<sec*1000){
- end=clock()-start;
- cout<<"Countdown:"<<sec-end/1000<<endl;
- cout<<"Time passed:"<<end/1000<<endl;
- system("cls");
- }
- cout<<"Congrats for wasting "<<end<<"seconds!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |