返回列表 發帖
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. int main()
  5. {
  6.    float sec,st,end=0;
  7.    cout<<">>BRixton Timer<<"<<endl;
  8.    cout<<"Enter: ";
  9.    cin>>sec;
  10.    
  11.    st=clock();
  12.    
  13.    while(end<sec*1000)
  14.    {
  15.                       end=clock()-st;
  16.                       cout<<(sec*1000-end)/1000<<" Second/Seconds"<<endl;
  17.                       system("cls");
  18. }
  19. cout<<"timeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee's up "<<endl;
  20. system("pause");
  21. return 0;
  22. }
複製代碼

TOP

返回列表