標題:
倒數計時器
[打印本頁]
作者:
鄭繼威
時間:
2023-8-22 19:06
標題:
倒數計時器
設計一程式,讓使用者能指定秒數倒數,執行畫面如下:
#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-8-22 20:51
#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-8-25 20:04
#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-8-25 20:06
[code]#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
re:
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;
_sleep(3000);
goto re;
system("pause");
return 0;
}
複製代碼
[/code]
作者:
陳宣廷
時間:
2023-8-25 20:06
#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<<"正數:"<<end/1000<<"秒"<<endl;
cout<<"倒數:"<<sec-(end/1000)<<"秒"<<endl;
system("cls");
}
cout<<"時間到!共經過了"<<end<<"毫秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2023-8-25 20:08
本帖最後由 張絜晰 於 2023-8-25 20:10 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec, start, end=0;
cout<<"Seconds:";
cin>>sec;
start=clock();
while(end<sec*1000){
end=clock()-start;
cout<<"Countdown:"<<sec-end/1000<<endl;
cout<<"Time passed:"<<end/1000<<endl;
system("cls");
}
cout<<"Congrats for wasting "<<end<<"seconds!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2023-8-25 20:09
#include<iostream>
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<<"秒\n";
cout<<"正數: "<<(end/1000)<<"秒\n";
system("cls");
}
cout<<"時間到!共經過了 "<<end<<"毫秒";
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2023-8-25 20:09
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
float a,b,c=0;
cout<<"請輸入你要倒數的秒數";
cin>>a;
b=clock();
while(c<a*1000)
{
c=clock()-b;
cout<<"倒數:"<<(a*1000-c)/1000<<"秒"<<endl;
system("cls");
}
cout<<"時間到!經過了"<<a<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-8-25 20:09
#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;
}
複製代碼
作者:
李柏漢
時間:
2023-8-25 20:10
#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<<"時間到!共經過了"<<sec<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-8-25 20:12
#include<iostream>
#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<<"毫秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-8-25 20:14
9
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2