- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- float sec, start, end;
- cout<<"請輸入要倒數的秒數: ";
- cin>>sec;
- start=clock();
- while(end<sec*1000)
- {
- end=clock()-start;
- cout<<(sec*1000-end)/1000<<" 秒!"<<endl;
- _sleep(50);
- system("cls");
- }
- cout<<"時間到!共經過了"<<sec<<" 秒!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |