- #include<iostream>
- #include<cmath>
- using namespace std;
- int main()
- {
- float sec,st,end=0;
- cout<<">>BRixton Timer<<"<<endl;
- cout<<"Enter: ";
- cin>>sec;
-
- st=clock();
-
- while(end<sec*1000)
- {
- end=clock()-st;
- cout<<(sec*1000-end)/1000<<" Second/Seconds"<<endl;
- system("cls");
- }
- cout<<"timeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee's up "<<endl;
- system("pause");
- return 0;
- }
複製代碼 |