標題:
[作業] 跑馬燈 (二)
[打印本頁]
作者:
tonyh
時間:
2014-3-22 18:06
標題:
[作業] 跑馬燈 (二)
本帖最後由 tonyh 於 2014-3-29 16:39 編輯
由
0% 載入中
慢慢轉換為
15% 載入中..
最後
100% 完成!
執行畫面如下:
[attach]859[/attach]
[attach]860[/attach]
[attach]861[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5>=1 && i/5<=9)
cout<<" "<<i/5<<"% 載入中.";
if(i/5>=10 && i/5<=20)
cout<<" "<<i/5<<"% 載入中.";
if(i/5>=21 && i/5<=40)
cout<<" "<<i/5<<"% 載入中..";
if(i/5>=41 && i/5<=60)
cout<<" "<<i/5<<"% 載入中...";
if(i/5>=61 && i/5<=80)
cout<<" "<<i/5<<"% 載入中....";
if(i/5>=81 && i/5<=100)
cout<<" "<<i/5<<"% 載入中.....";
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-3-22 18:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100%完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-3-22 18:28
本帖最後由 張峻瑋 於 2014-3-29 16:44 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=500;i++)
{
if(i>=1 && i<=50)
cout<<" "<<i/5<<"% 載入中 ▋";
if(i>=51 && i<=100)
cout<<" "<<i/5<<"% 載入中 ▋▋"<<endl;
if(i>=101 && i<=150)
cout<<" "<<i/5<<"% 載入中 ▋▋▋"<<endl;
if(i>=151 && i<=200)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋"<<endl;
if(i>=201 && i<=250)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋"<<endl;
if(i>=251 && i<=300)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋"<<endl;
if(i>=301 && i<=350)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋"<<endl;
if(i>=351 && i<=400)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋"<<endl;
if(i>=401 && i<=450)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋▋"<<endl;
if(i>=451 && i<=500)
cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋▋▋"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-3-22 18:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=2000; i++)
{
cout<<i/20<<"% 載入中"<<endl;
system("cls");
}
cout<<"100%完成"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2014-3-29 13:11
本帖最後由 施伯叡 於 2014-3-29 16:41 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5>=1 && i/5<=20)
cout<<" "<<i/5<<"% 載入中.";
if(i/5>=21 && i/5<=40)
cout<<" "<<i/5<<"% 載入中..";
if(i/5>=41 && i/5<=60)
cout<<" "<<i/5<<"% 載入中...";
if(i/5>=61 && i/5<=80)
cout<<" "<<i/5<<"% 載入中....";
if(i/5>=81 && i/5<=100)
cout<<" "<<i/5<<"% 載入中.....";
system("cls");
}
cout<<"100% 完成..."<<endl;
system("pause");
return 0;
}
作者:
周雍程
時間:
2014-3-29 15:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100%完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-3-29 16:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100%完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-3-29 16:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5>=1 && i/5<=20)
cout<<i/5<<"%載入中<";
if(i/5>=21 && i/5<=40)
cout<<i/5<<"%載入中< <";
if(i/5>=41 && i/5<=60)
cout<<i/5<<"%載入中< < <";
if(i/5>=61 && i/5<=80)
cout<<i/5<<"%載入中< < < <";
if(i/5>=81 && i/5<=100)
cout<<i/5<<"%載入中< < < < <";
system("cls");
}
cout<<"100%完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-3-29 16:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
for(int i=1; i<=500; i++)
{
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100%完成!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2