- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int sec, a=0;
- cout<<"請輸入要數的秒數: "<<endl;
- cin>>sec;
- double a1, a2;
- a1=clock();
- while (sec!=a)
- {
- a2=clock();
- a=(a2-a1)/1000;
- cout<<(a2-a1)/1000;
- system("cls");
- }
- cout<<"時間到!經過"<<sec<<"秒"<<endl;
- system("pause");
- system("cls");
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |