標題:
跑馬燈 (三)
[打印本頁]
作者:
tonyh
時間:
2015-6-13 11:44
標題:
跑馬燈 (三)
本帖最後由 tonyh 於 2015-6-27 10:55 編輯
利用跑馬燈的方式, 顯示訊息 "歡迎光臨".
[attach]1279[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
李知易
時間:
2015-6-13 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=80; i+=1)
{
if(i>=1 && i<21)
cout<<"歡";
if(i>=21 && i<41)
cout<<" 迎";
if(i>=41 && i<61)
cout<<" 光";
if(i>=61 && i<81)
cout<<" 臨";
system("cls");
}
for(int g=1; g<=80; g+=1)
{
if(g>=1 && g<21)
cout<<"歡";
if(g>=21 && g<41)
cout<<"歡迎";
if(g>=41 && g<61)
cout<<"歡迎光";
if(g>=61 && g<81)
cout<<"歡迎光臨";
system("cls");
}
for(int f=1; f<=110; f+=1)
{
if(f>=1 && f<21)
cout<<"歡迎光臨";
if(f>=21 && f<41)
cout<<" ";
if(f>=41 && f<61)
cout<<"歡迎光臨";
if(f>=81 && f<101)
cout<<" ";
if(f>=101 && f<111)
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-6-13 12:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
allre:
for(int i=1;i<=220;i++)
{
if(i>=1 and i<11)
cout<<"歡"<<endl;
if(i>=11 and i<21)
cout<<" 迎"<<endl;
if(i>=21 and i<31)
cout<<" 光"<<endl;
if(i>=31 and i<41)
cout<<" 臨"<<endl;
if(i>=41 and i<51)
cout<<"◇"<<endl;
if(i>=51 and i<61)
cout<<"◇◆"<<endl;
if(i>=61 and i<71)
cout<<"◇◆◇"<<endl;
if(i>=71 and i<81)
cout<<"◇◆◇歡"<<endl;
if(i>=81 and i<91)
cout<<"◇◆◇歡迎"<<endl;
if(i>=91 and i<101)
cout<<"◇◆◇歡迎光"<<endl;
if(i>=101 and i<111)
cout<<"◇◆◇歡迎光臨◇"<<endl;
if(i>=111 and i<121)
cout<<"◇◆◇歡迎光臨◇◆"<<endl;
if(i>=121 and i<131)
cout<<"◇◆◇歡迎光臨◇◆◇"<<endl;
if(i>=131 and i<141)
cout<<"◆"<<endl;
if(i>=141 and i<151)
cout<<"◆◇"<<endl;
if(i>=151 and i<161)
cout<<"◆◇◆"<<endl;
if(i>=161 and i<171)
cout<<"◆◇◆歡"<<endl;
if(i>=171 and i<181)
cout<<"◆◇◆歡迎"<<endl;
if(i>=181 and i<191)
cout<<"◆◇◆歡迎光"<<endl;
if(i>=191 and i<201)
cout<<"◆◇◆歡迎光臨◆"<<endl;
if(i>=201 and i<211)
cout<<"◆◇◆歡迎光臨◆◇◆"<<endl;
if(i>=211 and i<221)
cout<<"◆◇◆歡迎光臨◆◇◆"<<endl;
system("cls");
}
for(int j=0;j<=100;j++)
{
if(j%2==0)
cout<<"☆★☆ 歡迎光臨 ☆★☆"<<endl;
else
cout<<"★☆★ 歡迎光臨 ★☆★"<<endl;
system("cls");
}
goto allre;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2015-6-27 11:01
1
11111111
作者:
李大全
時間:
2015-6-27 11:02
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=80; i++)
{
if(i<=20)
cout<<"歡";
else if(i>21 && i<=40)
cout<<" 迎";
else if(i>41 && i<=60)
cout<<" 光";
else
cout<<" 臨";
system("cls");
}
for(int i=1; i<=80; i++)
{
if(i<=20)
cout<<"歡";
else if(i>21 && i<=40)
cout<<"歡迎";
else if(i>41 && i<=60)
cout<<"歡迎光";
else
cout<<"歡迎光臨";
system("cls");
}
for(int i=1; i<=140; i++)
{
if(i<=20)
cout<<"";
else if(i>21 && i<=40)
cout<<"歡迎光臨";
else if(i>41 && i<=60)
cout<<"";
else if(i>61 && i<=80)
cout<<"歡迎光臨";
else if(i>81 && i<=100)
cout<<"";
else if(i>101 && i<=120)
cout<<"歡迎光臨";
else
cout<<"";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-6-27 11:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1;i<=110;i++)
{
if(i>=1 and i<11)
cout<<"歡"<<endl;
if(i>=11 and i<21)
cout<<" 迎"<<endl;
if(i>=21 and i<31)
cout<<" 光"<<endl;
if(i>=31 and i<41)
cout<<" 臨"<<endl;
if(i>=71 and i<81)
cout<<"歡"<<endl;
if(i>=81 and i<91)
cout<<"歡迎"<<endl;
if(i>=91 and i<101)
cout<<"歡迎光"<<endl;
if(i>=101 and i<111)
cout<<"歡迎光臨"<<endl;
system("cls");
}
for(int j=0;j<=100;j++)
{
if(j%2==0)
cout<<"li 歡迎光臨 angh"<<endl;
else
cout<<"angh 歡迎光臨 li"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-6-27 11:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a=1;
for(int i=1; i<=80; i++)
{
if(i>=1 && i<21)
cout<<"歡";
else if(i>=21 && i<41)
cout<<" 迎";
else if(i>=41 && i<61)
cout<<" 光";
else
cout<<" 臨";
system("cls");
}
for(int i=1; i<=80; i++)
{
if(i>=1 && i<21)
cout<<"歡";
else if(i>=21 && i<41)
cout<<"歡迎";
else if(i>=41 && i<61)
cout<<"歡迎光";
else
cout<<"歡迎光臨";
system("cls");
} for(int i=1; i<=120; i++)
{
if(i>=20)
cout<<"歡迎光臨";
else if(i>=21 && i<40)
cout<<"";
else if(i>=41 && i<60)
cout<<"歡迎光臨";
else if(i>=61 && i<80)
cout<<"";
else if(i>=81 && i<100)
cout<<"歡迎光臨";
else
cout<<"";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2