返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    re:
  8.    int sec;
  9.    double c1,c2;
  10.    int c;
  11.    cout<<"輸入秒數 : "<<endl;
  12.    cin>>sec;
  13.    c1=clock();
  14.    while(c!=sec)
  15.    {
  16.       c2=clock();
  17.       c=(c2-c1)/1000;
  18.       cout<<(c2-c1)/1000<<"秒!!!";
  19.       system("cls");
  20.    }
  21.    cout<<"時間到了! 總共經過 : "<<sec<<"秒!"<<endl;
  22.    system("pause");
  23.    system("cls");
  24.    goto re;
  25.    return 0;
  26. }
複製代碼

TOP

返回列表