本帖最後由 tonyh 於 2014-6-14 17:34 編輯
設計一程式, 讓使用者能指定秒數, 執行畫面如下:
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- int sec;
- double c1, c2;
- int c;
- cout<<"請輸入要數的秒數: ";
- cin>>sec;
- c1=clock();
- while(true)
- {
- c2=clock();
- c=(c2-c1)/1000;
- cout<<(c2-c1)/1000<<"秒!";
- system("cls");
- if(c==sec)
- break;
- }
- cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
- system("pause");
- system("cls");
- goto re;
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- int sec;
- double c1, c2;
- int c;
- cout<<"請輸入要數的秒數: ";
- cin>>sec;
- c1=clock();
- while(c!=sec)
- {
- c2=clock();
- c=(c2-c1)/1000;
- cout<<(c2-c1)/1000<<"秒!";
- system("cls");
- }
- cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
- system("pause");
- system("cls");
- goto re;
- return 0;
- }
複製代碼 |