標題:
數秒計時器
[打印本頁]
作者:
陳品肇
時間:
2019-3-16 12:28
標題:
數秒計時器
設計一程式, 讓使用者能指定秒數, 執行畫面如下:
[attach]6089[/attach]
[attach]6090[/attach]
[attach]6091[/attach]
#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-3-16 17:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sec ,min=0;
double c1 ,c2;
cout<<"請輸入秒數:";
cin>>sec;
c1=clock();
while(sec!=min)
{
c2=clock();
min=(c2-c1)/1000;
cout<<(c2-c1)/1000<<endl;
system("cls");
}
cout<<"時間到! 經過了"<<sec<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-3-16 17:27
#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-3-16 17:28
#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-3-16 17:28
#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-3-16 17:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec;
double c1,c2;
int c;
cout<<"請輸入要數的秒數"<<endl;
cin>>sec;
c1=clock();
while(c!=sec)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒"<<endl;
system("cls");
}
cout<<"<<時間到 經過了"<<sec<<"秒"<<endl;
system ("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
譚詩澐
時間:
2019-3-16 17:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec, a=0;
cout<<"請輸入要數的秒數: "<<endl;
cin>>sec;
double a1, a2;
a1=clock();
while (sec!=a)
{
a2=clock();
a=(a2-a1)/1000;
cout<<(a2-a1)/1000;
system("cls");
}
cout<<"時間到!經過"<<sec<<"秒"<<endl;
system("pause");
system("cls");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2019-3-16 17:32
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
re:
int sec;
double c1,c2;
int c;
cout<<"輸入秒數 : "<<endl;
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2