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

TOP

返回列表