標題:
[作業] 跑馬燈 (三)
[打印本頁]
作者:
tonyh
時間:
2013-9-7 15:30
標題:
[作業] 跑馬燈 (三)
稍微改寫上一個程式, 使%的位置固定.
作者:
鎧言
時間:
2013-9-7 17:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5<=9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9&&i/5<=99)
cout<<" "<<i/5<<"%"<<endl;
else
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-9-7 17:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5<=9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9&&i/5<=99)
cout<<" "<<i/5<<"%"<<endl;
else
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-9-8 00:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5==9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9 && i/5<=99)
cout<<" "<<i/5<<"%"<<endl;
else
cout<<""<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-9-8 20:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5<=9)
{
cout<<" "<<i/5<<"%"<<endl;
system("cls");
}
else if(i/5>=10||i/5<=99)
{
cout<<" "<<i/5<<"%"<<endl;
system("cls");
}
}
cout<<"100% 完成!";
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-9-9 21:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=300; i++)
{
if(i/3<=9)
cout<<" "<<i/3<<"%"<<endl;
else if(i/3>9 && i/3<=99)
cout<<" "<<i/3<<"%"<<endl;
else
cout<<i/3<<"%"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-9-28 11:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5<=9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9&&i/5<=99)
cout<<" "<<i/5<<"%"<<endl;
else
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100% 下載完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-9-28 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=500; i++)
{
if(i/5<=9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9&&i/5<=99)
cout<<" "<<i/5<<"%"<<endl;
else
cout<<i/5<<"%"<<endl;
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-9-28 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=1000; i++)
{
if(i/5<=9)
cout<<" "<<i/5<<"%"<<endl;
else if(i/5>9&&i/5<=99)
{
cout<<" "<<i/5<<"%"<<endl;
}
else
{
cout<<i/5<<"%"<<endl;
}
system("cls");
}
cout<<"100% 完成!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2