- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- #include<cmath>
- using namespace std;
- int main()
- {
- float a,b,c;
- cout<<"請輸入秒數"<<endl;
- cin>>a;
- cout<<"計時開始!"<<endl;
- b=clock();
- system("pause");
- while(c<a*1000){
- c=clock()-b;
- cout<<"過了"<<(a*1000-c)/1000<<"秒";
- _sleep(50);
- system("cls");
- }
- cout<<"時間到,過了"<<a<<"秒"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |