標題:
數秒計時器
[打印本頁]
作者:
tonyh
時間:
2014-6-14 16:54
標題:
數秒計時器
本帖最後由 tonyh 於 2014-6-14 17:34 編輯
設計一程式, 讓使用者能指定秒數, 執行畫面如下:
[attach]899[/attach]
[attach]900[/attach]
[attach]901[/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(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
#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;
}
複製代碼
作者:
張峻瑋
時間:
2014-6-14 17:29
#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(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-6-14 17:30
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int sec;
double c1, c2;
int c;
cout<<"請輸入要數的秒數: ";
cin>>sec;
c1=clock();
while(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-6-14 17:30
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
re:
double c;
int sec;
cout << "請輸入要數的秒數:" ;
cin >> sec;
sec = sec*1000;
clock() == 0;
for(int i = 0;i<=sec;i++)
{
c = clock();
cout << c/1000 << endl;
system ("cls");
if(clock() >= sec)
break;
}
cout << "Time's up we run "<<sec/1000 <<"seconds" << endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-6-14 17:36
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
re:
system("cls");
int sec;
int c;
double c1, c2;
cout << "請輸入要數的秒數:";
cin >> sec;
c1 = clock();
while (true)
{
c2 = clock();
c = (c2 - c1) / 1000;
cout << (c2 - c1) / 1000 << "秒" << endl;
system("cls");
if (c == sec)
break;
}
cout << "時間到! 經過了" << sec <<"秒" << endl;;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-6-14 17:36
#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(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"time's up 共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-6-14 17:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int sec;
double c1,c2;
int c;
cout<<"請輸入你要數的秒數:";
cin>>sec;
c1=clock();
while(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"時間到! 過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-6-20 20:22
#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(true)
{
c2=clock();
c=(c2-c1)/1000;
cout<<(c2-c1)/1000<<"秒!";
system("cls");
if(c==sec)
break;
}
cout<<"時間到! 共經過了"<<sec<<"秒!"<<endl;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2