標題:
倒數計時器
[打印本頁]
作者:
方浩葦
時間:
2024-8-3 03:35
標題:
倒數計時器
本帖最後由 方浩葦 於 2024-8-3 03:38 編輯
設計一程式,讓使用者能指定秒數倒數,執行畫面如下:
本帖隱藏的內容需要回復才可以瀏覽
作者:
李唯銘
時間:
2024-8-17 14:30
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
float sec, start, end;
cout<<"輸入要倒數的秒數!"<<endl;
cin>>sec;
start=clock();
while(true)
{
if((clock()-start)/1000>sec)
break;
cout<<sec-(clock()-start)/1000<<endl;
_sleep(50);
system("cls");
}
cout<<"時間到,經過了"<<sec<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-8-17 14:32
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
float sec, start, end;
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;
}
複製代碼
作者:
劉奕劭
時間:
2024-8-17 14:39
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cmath>
using namespace std;
int main()
{
float a,b,c;
cout<<"請輸入秒數"<<endl;
cin>>a;
cout<<"計時開始!"<<endl;
b=clock();
system("pause");
while(c<a*1000){
c=clock()-b;
cout<<"過了"<<(a*1000-c)/1000<<"秒";
_sleep(50);
system("cls");
}
cout<<"時間到,過了"<<a<<"秒"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-8-17 14:40
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
float sec,start,end;
cout<<"請輸入要倒數的秒數"<<endl;
cin>>sec;
start=clock();
while(true){
cout<<(sec*1000-(clock()-start))/1000<<"秒!"<<endl;
_sleep(50);
system("cls");
if((clock()-start)/1000>sec)
break;
}
cout<<"時間到了,共經過"<<sec<<"秒"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-8-17 14:49
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
float sec, start, end;
cout<<"請輸入要倒數的秒數: ";
cin>>sec;
start=clock();
while(end<sec*1000)
{
end=clock()-start;
cout<<(sec*1000-end)/1000<<" 秒!"<<endl;
_sleep(50);
system("cls");
}
cout<<"時間到!共經過了"<<sec<<" 秒!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2