標題:
倒數計時器
[打印本頁]
作者:
鄭繼威
時間:
2023-4-21 01:47
標題:
倒數計時器
設計一程式,讓使用者能指定秒數倒數,執行畫面如下:
#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-4-22 14:39
#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-((end)/1000) <<"秒!";
// cout<<"正數:"<<(end)/1000<<"秒!";
system("cls");
}
cout<<"時間到!共經過了"<<end<<"毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-4-22 14:40
#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-4-22 14:41
#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-4-22 14:41
#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-4-22 14:41
#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-4-22 14:41
#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-4-22 14:42
#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<<" 秒!";
cout<<"正數:"<<(end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了 "<<end/1000<<" 秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-4-22 14:43
7
作者:
鄭繼威
時間:
2023-4-22 14:43
7
作者:
羅暐傑
時間:
2023-4-22 14:48
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float start, secs, end=0;
cout<<"請輸入要倒數的秒數:";
cin>>secs;
start=clock();
while(end<secs*1000){
end=clock()-start;
cout<<"倒數:"<<(secs*1000-end)/1000<<" 秒!";
system("cls");
}
cout<<"時間到!共經過了"<<end/1000<<"秒";
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2023-4-28 22:56
#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