標題:
倒數計時器
[打印本頁]
作者:
鄭繼威
時間:
2023-2-22 00:15
標題:
倒數計時器
本帖最後由 鄭繼威 於 2023-2-22 00:23 編輯
設計一程式,讓使用者能指定秒數倒數,執行畫面如下:
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec,start,end=0;
cout<<"你要倒數的秒數:";
cin>>sec;//7
start=clock();//0000
//7000
while(end<sec*1000){
end=clock()-start;//經過的秒數
cout<<"倒數:"<<(sec*1000-end)/1000<<" 秒!";
//cout<<"正數:"<<(end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了 "<<end<<" 毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
備註:想像每呼叫一次clock(),就像按一下碼表
作者:
李彣
時間:
2023-2-22 20:53
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec,start,end=0;
cout<<"你要倒數的秒數:";
cin>>sec;
start=clock();
while(end<sec*1000)
{
end=clock()-start;
cout<<"倒數:"<<(sec*1000-end)/1000<<"秒";
system("cls");
}
cout<<"時間到!共經過了"<<end<<"毫秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2023-2-22 20:53
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
float sec,start,end=0;
cout<<"你要倒數的秒數:";
cin>>sec;
start=clock();
while(end<sec*1000)
{
end=clock()-start;
cout<<"倒數:"<<(sec*1000-end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了 "<<end<<" 毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-2-22 20:54
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec,start,end=0;
cout<<"你要倒數的秒數:";
cin>>sec;
start=clock();
while(end<sec*1000){
end=clock()-start;
cout<<"倒數:"<<(sec*1000-end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了 "<<end<<" 毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-2-22 20:55
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec,start,end=0;
cout<<"你要倒數的秒數:";
cin>>sec;
start=clock();
while(end<sec*1000){
end=clock()-start;
cout<<"倒數:"<<(sec*1000-end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了 "<<end<<" 毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2