標題:
數秒計時器
[打印本頁]
作者:
陳品肇
時間:
2019-5-25 13:17
標題:
數秒計時器
本帖最後由 陳品肇 於 2019-5-25 14:58 編輯
設計一程式, 讓使用者能指定秒數, 執行畫面如下:
[attach]6568[/attach]
[attach]6569[/attach]
[attach]6570[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec,c;
double c1,c2;
cout<<"請輸入要數的秒數:";
cin>>sec;
c1 = clock(); //c1是思考的秒數
while(c != sec) //從0跑到5 當它秒數是5的時候就跳離
{
c2 = clock(); // c2會一直變動
c = (c2-c1)/1000; //思考時間歸零並換算成秒
cout<< (c2-c1)/1000<<"秒!"<<endl;
system("cls");
}
cout<<"時間到!共經過"<<c<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-5-25 15:02
本帖最後由 吳孟修 於 2019-6-1 13:40 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec;
double c1, c2;
int c;
cout<<"請輸入要數的秒數: ";
cin>>sec;
c1=clock();
while(c!=sec)
{
c2=clock();
c=(c2-c1)/1000;
cout<<"已經過了"<<(c2-c1)/1000<<"秒.";
system("cls");
}
cout<<"時間到,共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-5-25 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sec,c;
double c1,c2;
cout<<"請輸入要數的秒數: ";
cin>>sec;
c1=clock();
while(c!=sec)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
}
cout<<"時間到!經過了"<<sec<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-5-25 15:05
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
re:
int sec;
double c1, c2;
int c;
cout<<"請輸入要數的秒數: ";
cin>>sec;
c1=clock();
while(c!=sec)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
}
cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-5-25 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sec,c;
double c1,c2;
cout<<"請輸入要數的秒數:";
cin>>sec;
c1 = clock();
while(c != sec)
{
c2 =clock();
c= (c2-c1)/1000;
cout<< (c2-c1)/1000<<"秒!"<<endl;
system("cls");
}
cout<<"時間到!共經過"<<c<<"秒!"<<endl;
system("pause");
system("cls");
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-5-25 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec,c;
double c1,c2;
cout<<"請輸入要數的秒數:";
cin>>sec;
c1=clock();
while(c!=sec)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
}
cout<<"時間到!共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-5-25 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int t,c;
double c1,c2;
cout<<"請輸入要數的秒數:";
cin>>t;
c1 = clock();
while(c!= t)
{
c2 = clock();
c = (c2-c1)/1000;
cout<< (c2-c1)/1000<<"秒!"<<endl;
system("cls");
}
cout<<"時間到!共經過"<<c<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-6-1 13:14
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
re:
int sec,b;
double z1,z2;
cout<<"請輸入要數的秒數: ";
cin>>sec;
z1 = clock();
while(b != sec)
{
z2 = clock();
b = (z2-z1)/1000;
cout<<(z2-z1)/1000<<"s!"<<endl;
system("cls");
}
cout<<"時間到!過了"<<b<<"s!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2