註冊
登錄
論壇
搜索
幫助
導航
私人消息 (0)
公共消息 (0)
系統消息 (0)
好友消息 (0)
帖子消息 (0)
種子論壇 | 高雄市資訊培育協會學員討論區
»
結訓課程 (青少年程式設計班)
»
C++(103-2六)
» [作業] 跑馬燈 (四)
返回列表
發帖
發短消息
加為好友
tonyh
當前離線
UID
94
帖子
7063
精華
21
積分
210
閱讀權限
150
在線時間
2594 小時
註冊時間
2011-1-8
最後登錄
2024-11-7
超級版主
1
#
跳轉到
»
倒序看帖
打印
字體大小:
t
T
tonyh
發表於 2015-6-13 11:51
|
只看該作者
[作業] 跑馬燈 (四)
本帖最後由 tonyh 於 2015-6-27 11:36 編輯
使文字訊息在畫面上反覆地左右移動.
本帖隱藏的內容需要回復才可以瀏覽
附件:
您需要
登錄
才可以下載或查看附件。沒有帳號?
註冊
收藏
分享
發短消息
加為好友
李知易
當前離線
UID
67631
帖子
623
精華
0
積分
0
閱讀權限
100
在線時間
176 小時
註冊時間
2014-6-30
最後登錄
2024-11-7
版主
2
#
李知易
發表於 2015-6-13 12:16
|
只看該作者
本帖最後由 李知易 於 2015-6-27 11:48 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
re:
for(int i=1;i<=240;i++)
{
if(i<=120)
{
for(int j=0;j<=i;j+=2)
cout<<" ";
}else
{
for(int j=0;j<=240-i;j+=2)
cout<<" ";
}
cout<<"新年快樂";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
謝瀞儀
當前離線
UID
67638
帖子
186
精華
0
積分
0
閱讀權限
10
在線時間
39 小時
註冊時間
2014-6-30
最後登錄
2017-1-22
新手上路
3
#
謝瀞儀
發表於 2015-6-14 17:15
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
allre:
for(int i=1;i<=270;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;
if(i>=221 and i<231)
cout<<" ◆◇◆歡迎光臨◆◇◆"<<endl;
if(i>=231 and i<241)
cout<<" ◇◆◇歡迎光臨◇◆◇"<<endl;
if(i>=241 and i<251)
cout<<" ◆◇◆歡迎光臨◆◇◆"<<endl;
if(i>=251 and i<261)
cout<<" ◇◆◇歡迎光臨◇◆◇"<<endl;
if(i>=261 and i<271)
cout<<"◆◇◆歡迎光臨◆◇◆"<<endl;
system("cls");
}
goto allre;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
謝瀞儀
當前離線
UID
67638
帖子
186
精華
0
積分
0
閱讀權限
10
在線時間
39 小時
註冊時間
2014-6-30
最後登錄
2017-1-22
新手上路
4
#
謝瀞儀
發表於 2015-6-14 17:26
|
只看該作者
本帖最後由 謝瀞儀 於 2015-6-14 17:56 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
allre:
for(int i=1;i<=150;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;
system("cls");
}
goto allre;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
謝瀞儀
當前離線
UID
67638
帖子
186
精華
0
積分
0
閱讀權限
10
在線時間
39 小時
註冊時間
2014-6-30
最後登錄
2017-1-22
新手上路
5
#
謝瀞儀
發表於 2015-6-14 17:30
|
只看該作者
好一點但還是很奇怪
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
allre:
for(int i=1;i<=150;i++)
{
if(i>=1 and i<11)
cout<<"歡迎光臨";
if(i>=11 and i<121)
cout<<" 歡迎光臨";
if(i>=21 and i<31)
cout<<" 歡迎光臨";
if(i>=31 and i<41)
cout<<" 歡迎光臨";
if(i>=41 and i<51)
cout<<" 歡迎光臨";
if(i>=51 and i<61)
cout<<" 歡迎光臨";
if(i>=61 and i<71)
cout<<" 歡迎光臨";
if(i>=71 and i<81)
cout<<" 歡迎光臨";
if(i>=81 and i<91)
cout<<" 歡迎光臨";
if(i>=91 and i<101)
cout<<" 歡迎光臨";
if(i>=101 and i<111)
cout<<" 歡迎光臨";
if(i>=111 and i<121)
cout<<" 歡迎光臨";
if(i>=121 and i<131)
cout<<" 歡迎光臨";
if(i>=131 and i<141)
cout<<" 歡迎光臨";
if(i>=141 and i<151)
cout<<"歡迎光臨";
system("cls");
}
goto allre;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
謝瀞儀
當前離線
UID
67638
帖子
186
精華
0
積分
0
閱讀權限
10
在線時間
39 小時
註冊時間
2014-6-30
最後登錄
2017-1-22
新手上路
6
#
謝瀞儀
發表於 2015-6-14 17:51
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
allre:
for(int i=1;i<=290;i++)
{
if(i>=1 and i<11)
cout<<" ";
if(i>=11 and i<21)
cout<<" ◆";
if(i>=21 and i<31)
cout<<" ◇◆";
if(i>=31 and i<41)
cout<<" ◆◇◆";
if(i>=41 and i<51)
cout<<" ◇◆◇歡";
if(i>=51 and i<61)
cout<<" ◆◇◆歡迎";
if(i>=61 and i<71)
cout<<" ◇◆◇歡迎光";
if(i>=71 and i<81)
cout<<" ◆◇◆歡迎光臨";
if(i>=81 and i<91)
cout<<" ◇◆◇歡迎光臨◇";
if(i>=91 and i<101)
cout<<" ◆◇◆歡迎光臨◆◇";
if(i>=101 and i<111)
cout<<" ◇◆◇歡迎光臨◇◆◇";
if(i>=111 and i<121)
cout<<" ◆◇◆歡迎光臨◆◇◆";
if(i>=121 and i<131)
cout<<" ◇◆◇歡迎光臨◇◆◇";
if(i>=131 and i<141)
cout<<" ◆◇◆歡迎光臨◆◇◆";
if(i>=141 and i<151)
cout<<" ◇◆◇歡迎光臨◇◆◇";
if(i>=151 and i<161)
cout<<" ◆◇◆歡迎光臨◆◇◆";
if(i>=161 and i<171)
cout<<" ◇◆◇歡迎光臨◇◆◇";
if(i>=171 and i<181)
cout<<" ◆◇◆歡迎光臨◆◇◆";
if(i>=181 and i<191)
cout<<"◇◆◇歡迎光臨◇◆◇";
if(i>=191 and i<201)
cout<<"◇◆歡迎光臨◆◇◆";
if(i>=201 and i<211)
cout<<"◇歡迎光臨◇◆◇";
if(i>=211 and i<221)
cout<<"歡迎光臨◆◇◆";
if(i>=221 and i<231)
cout<<"迎光臨◇◆◇";
if(i>=231 and i<241)
cout<<"光臨◆◇◆";
if(i>=241 and i<251)
cout<<"臨◇◆◇";
if(i>=251 and i<261)
cout<<"◆◇◆";
if(i>=261 and i<271)
cout<<"◆◇";
if(i>=271 and i<281)
cout<<"◆";
if(i>=281 and i<291)
cout<<" ";
system("cls");
}
goto allre;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
李大全
當前離線
UID
67641
帖子
112
精華
0
積分
0
閱讀權限
10
在線時間
12 小時
註冊時間
2014-6-30
最後登錄
2015-8-22
新手上路
7
#
李大全
發表於 2015-6-27 11:03
|
只看該作者
#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;
}
TOP
發短消息
加為好友
洪振庭
當前離線
UID
67646
帖子
394
精華
0
積分
0
閱讀權限
10
在線時間
103 小時
註冊時間
2014-6-30
最後登錄
2020-1-4
新手上路
8
#
洪振庭
發表於 2015-6-27 11:43
|
只看該作者
clude<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=240; i+=2)
{
if(i<=120)
{
for(int j=0; j<=i; j++)
{
cout<<"";
}
}
else
{
for(int j=0; j<=240-i; j++)
{
cout<<"";
}
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
TOP
返回列表
谷哥人營隊
113Scratch夏令營
113年APCS冬令營
113年Scratch冬令營
113年Python證照特訓營(一)
113年谷哥人程式體驗營
113年國三專班
Python研習營(113_114)
113年Python證照特訓營(二)
113年程式夏令營(一)(二)
113年APCS夏令營(一)(二)
Python研習營
113年Python研習冬令營
112年國三專班
112APCS夏令營(一)(二)
112App快速開發夏令營
C語言 / C++ (特別輔導)
C++證照
C#
家教特輔
C語言特輔/證照(家教)
C++證照
C#
HTML5+CSS+JavaScript+PHP+MySQL
Java 家教 (王捷恩)
113新版塊名稱
快樂學 Scratch
Python 家教 (王捷恩 康恒睿)
Python 特別輔導 (家教)
快樂 C++ (家教)
我愛 Java (家教)
程式解題我最行 (家教)
程式常態班
C++ 新生挑戰區
考照心得分享
快樂 C++11307週五19:00
快樂C++11309週六13:30-15:30
快樂 C++11303 (週六15:40-17:40) 3F
程式解題我最行 (週六15:30-17:30) 3F
快樂 C++ (週六13:30-15:30) 3F
快樂 C++ (週六19:00-21:00) 3F
程式解題我最行 (週六10:00-12:00) 3F
快樂學 Scratch
程式解題我最行(週五19:00-21:00)
快樂 C++ (週六13:30-15:30) 3F
程式解題我最行(週三19:15-21:15)
快樂 C++11207週六10
快樂 C++11208週六19:00
程式解題我最行 (週五19:00-21:00) 3F
快樂 C++ (週六15:30-17:30) 3F
程式解題我最行 (週六19:00-21:00) 3F
程式解題我最行 (週四19:10-21:10)
產投職訓
結訓課程 (產投職訓)
Php & MySQL old
Illustrator old
Dreamweaver old
Android手機程式開發班
PHP & MySQL電子商務互動式網站實作班 (102下)
PHP & MySQL (102上)
PHP & MySQL電子商務互動式網站實作班
Photoshop數位影像設計初階
Flash創意廣告動畫初階
行銷短片視訊剪輯
數位商業攝影實務班
PHP & MySQL電子商務系統開發實務初階班
電子商務系統開發實務中階班
Server基礎架設&動態網頁設計初階班
Java視窗應用程式設計與遊戲開發班
Illustrator時尚插畫創作設計初階班
102上Php & MySQL 初階班
電子商務互動式網站實作中階
Dreamweaver多媒體網頁設計
Android手機程式開發班(2012年10月)
PHP & MySQL (2012年10月)
創意塗鴉
yahoo橫幅
google橫幅
市民學苑
第二屆樂活部落格
第一屆電腦設備簡易維護和故障排除班
專案訓練
電子商務創業班
TQC PHP認證
投資理財班
領隊導遊班
電腦基礎及網路應用身心障礙專班
應用軟體網頁化開發
[收藏此主題]
[關注此主題的新回復]
[通過 QQ、MSN 分享給朋友]