標題:
[作業] 跑馬燈 (二)
[打印本頁]
作者:
張翼安
時間:
2016-5-21 00:28
標題:
[作業] 跑馬燈 (二)
本帖最後由 張翼安 於 2016-5-21 11:42 編輯
由 0% 載入中 慢慢轉換為 15% 載入中.. 最後 100% 完成!
執行畫面如下:
補充: 需有控制速度的機制 (清楚地知道修改那個程式碼可以改變速度)
作者:
蔡季樺
時間:
2016-5-23 17:32
本帖最後由 蔡季樺 於 2016-5-23 17:36 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=0;i<=100;i+=5)
{
if(i<10)
cout<<" "<<i<<"% 載入中...";
else if(i>=10 && i<100)
cout<<" "<<i<<"% 載入中...";
else
break;
_sleep(1000);
system("cls");
}
cout<<"100% 完成!!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2016-5-28 10:00
本帖最後由 張健勳 於 2016-5-28 10:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=0;i<=100;i+=15) //i+-=後面的數字為更新速度
{
if(i<10)
cout<<" "<<i<<"% 開始載入...";
else if(i>=10 && i<100)
cout<<" "<<i<<"% 正在讀取資料...";
else
break;
_sleep(1000);
system("cls");
}
cout<<"100% 完成!!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2016-5-28 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int c=0;c<=100;c+=5)
{
if(c<10)
cout<<" "<<c<<"% 完成 ";
else if(c>=10 && c<100)
cout<<" "<<c<<"% 完成 ";
else
break;
_sleep(1000);
system("cls");
}
cout<<"100% 結束"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-5-28 10:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int x = 0; i <= 100; x += 5)
{
if(i < 10)
cout <<" " << x << "% 載入中...";
else if(x >= 10 && x < 100)
cout <<" "<< x << "% 載入中...";
else
break;
_sleep(1000);
system("cls");
}
cout << "100% 完成!" << endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2016-5-28 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=0;i<=100;i+=2){
if(1>0)
cout<<i<<"%載入中"<<endl;
else if(i>25)
cout<<i<<"%載入中."<<endl;
else if(i>50)
cout<<i<<"%載入中.."<<endl;
else if(i>75)
cout<<i<<"%載入中..."<<endl;
else if(i>90)
cout<<i<<"%載入中...."<<endl;
else{
cout<<"100%完成"<<endl;
break;}
_sleep(500);
system("cls");
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2