標題:
跑馬燈 (一)
[打印本頁]
作者:
陳品肇
時間:
2022-3-5 10:45
標題:
跑馬燈 (一)
本帖最後由 陳品肇 於 2022-3-5 11:39 編輯
設計一動畫,
由
□□□□□□□□□□
慢慢填滿如下圖
■■■■■■■■■■
或
□□■■■□□□□□
黑色方格不斷向右流動的感覺
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃奕澄
時間:
2022-3-5 10:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-3-5 11:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林紘憲
時間:
2022-3-5 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<1000;i++)
{
cout<<"□□□□□□□□□□"<<endl;
cout<<"■□□□□□□□□□"<<endl;
cout<<"■■□□□□□□□□"<<endl;
cout<<"■■■□□□□□□□"<<endl;
cout<<"□■■■□□□□□□"<<endl;
cout<<"□□■■■□□□□□"<<endl;
cout<<"□□□■■■□□□□"<<endl;
cout<<"□□□□■■■□□□"<<endl;
cout<<"□□□□□■■■□□"<<endl;
cout<<"□□□□□□■■■□"<<endl;
cout<<"□□□□□□□■■■"<<endl;
cout<<"□□□□□□□□■■"<<endl;
cout<<"□□□□□□□□□■"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-3-5 11:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<1000;i++)
{
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
}
system("pause");
return 0;
}
複製代碼
作者:
林紘憲
時間:
2022-3-5 11:35
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-3-5 11:35
本帖最後由 曾善勤 於 2022-3-5 11:40 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}[/code]
作者:
孫子傑
時間:
2022-3-5 11:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-3-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1;i<=65;i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-3-5 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-3-5 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1;i<65;i++)
{
if(i>=0 && i<=5)
cout<<"■□□□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■■□□□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■■□□□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■■□□□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"■■■■■□□□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"■■■■■■□□□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"■■■■■■■□□□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"■■■■■■■■□□□□□"<<endl;
if(i>=41 && i<=45)
cout<<"■■■■■■■■■□□□□"<<endl;
if(i>=46 && i<=50)
cout<<"■■■■■■■■■■□□□"<<endl;
if(i>=51 && i<=55)
cout<<"■■■■■■■■■■■□□"<<endl;
if(i>=56 && i<=60)
cout<<"■■■■■■■■■■■■□"<<endl;
if(i>=61 && i<=65)
cout<<"■■■■■■■■■■■■■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-3-5 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-3-5 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-3-5 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
for(int i=1; i<=65; i++)
{
if(i>=1 && i<=5)
cout<<"□□□□□□□□□□"<<endl;
if(i>=6 && i<=10)
cout<<"■□□□□□□□□□"<<endl;
if(i>=11 && i<=15)
cout<<"■■□□□□□□□□"<<endl;
if(i>=16 && i<=20)
cout<<"■■■□□□□□□□"<<endl;
if(i>=21 && i<=25)
cout<<"□■■■□□□□□□"<<endl;
if(i>=26 && i<=30)
cout<<"□□■■■□□□□□"<<endl;
if(i>=31 && i<=35)
cout<<"□□□■■■□□□□"<<endl;
if(i>=36 && i<=40)
cout<<"□□□□■■■□□□"<<endl;
if(i>=41 && i<=45)
cout<<"□□□□□■■■□□"<<endl;
if(i>=46 && i<=50)
cout<<"□□□□□□■■■□"<<endl;
if(i>=51 && i<=55)
cout<<"□□□□□□□■■■"<<endl;
if(i>=56 && i<=60)
cout<<"□□□□□□□□■■"<<endl;
if(i>=61 && i<=65)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-3-5 11:44
本帖最後由 田家齊 於 2022-3-5 12:00 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r;
cin>>r;
re:
for(int i=1;i<65*r;i++)
{
if(i>=1*r+1 && i<=5*r)
cout<<"□□□□□□□□□□"<<endl;
if(i>=5*r+1 && i<=10*r)
cout<<"■□□□□□□□□□"<<endl;
if(i>=10*r+1 && i<=15*r)
cout<<"■■□□□□□□□□"<<endl;
if(i>=15*r+1 && i<=20*r)
cout<<"■■■□□□□□□□"<<endl;
if(i>=20*r+1 && i<=25*r)
cout<<"□■■■□□□□□□"<<endl;
if(i>=25*r+1 && i<=30*r)
cout<<"□□■■■□□□□□"<<endl;
if(i>=30*r+1 && i<=35*r)
cout<<"□□□■■■□□□□"<<endl;
if(i>=35*r+1 && i<=40*r)
cout<<"□□□□■■■□□□"<<endl;
if(i>=40*r+1 && i<=45*r)
cout<<"□□□□□■■■□□"<<endl;
if(i>=45*r+1 && i<=50*r)
cout<<"□□□□□□■■■□"<<endl;
if(i>=50*r+1 && i<=55*r)
cout<<"□□□□□□□■■■"<<endl;
if(i>=55*r+1 && i<=60*r)
cout<<"□□□□□□□□■■"<<endl;
if(i>=60*r+1 && i<=65*r)
cout<<"□□□□□□□□□■"<<endl;
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2