返回列表 發帖
  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     re:
  7.     float sec,start,end=0;
  8.     cout<<"你要倒數的秒數:";
  9.     cin>>sec;
  10.     start=clock();
  11.     while(end<sec*1000){
  12.           end=clock()-start;
  13.           cout<<"倒數:"<<(sec*1000-end)/1000<<" 秒!";   
  14.           system("cls");               
  15.     }
  16.     cout<<"時間到!共經過了 "<<end<<" 毫秒!"<<endl;
  17.     _sleep(3000);
  18.     goto re;
  19.    
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼
[/code]

TOP

返回列表