標題:
跑馬燈 (一) - _sleep() 函式
[打印本頁]
作者:
方浩葦
時間:
2024-7-19 21:01
標題:
跑馬燈 (一) - _sleep() 函式
設計一動畫, 由
□□□□□□□□□□
開始慢慢改變為
■□□□□□□□□□
接著
■■□□□□□□□□
...
□□□□□■■■□□
呈現黑色方格不斷向右流動的感覺,並運用 _sleep() 函式控制其流動速度。
本帖隱藏的內容需要回復才可以瀏覽
作者:
林少謙
時間:
2024-7-20 15:59
本帖最後由 林少謙 於 2024-7-27 14:03 編輯
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
string a[]{"■■□□□□□□□■","■■■□□□□□□□","□■■■□□□□□□","□□■■■□□□□□","□□□■■■□□□□","□□□□■■■□□□","□□□□□■■■□□","□□□□□□■■■□",
"□□□□□□□■■■","■□□□□□□□■■"};
re:
for(int i=0; i<=9 ; i++)
{
system("cls");
cout<<a[i]<<endl;
_sleep(100);
if(i==9)
{
i==0;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-27 14:18
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int a=50;
re:
system("cls");
cout<<"□□□□□□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"■□□□□□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"■■□□□□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"■■■□□□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"□■■■□□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"□□■■■□□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"□□□■■■□□□□"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□■■■□□□"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□■■■□□"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□□■■■□"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□□□■■■"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□□□□■■"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□□□□□■"<<endl;
_sleep(a);
system("cls");
cout<<"□□□□□□□□□□"<<endl;
_sleep(a);
system("cls");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-7-27 14:24
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int speed=50;
re:
for(int i=0; i<=12; i++){
system("cls");
if(i==0)
cout<<"□□□□□□□□□□"<<endl;
if(i==1)
cout<<"■□□□□□□□□□"<<endl;
if(i==2)
cout<<"■■□□□□□□□□"<<endl;
if(i==3)
cout<<"■■■□□□□□□□"<<endl;
if(i==4)
cout<<"□■■■□□□□□□"<<endl;
if(i==5)
cout<<"□□■■■□□□□□"<<endl;
if(i==6)
cout<<"□□□■■■□□□□"<<endl;
if(i==7)
cout<<"□□□□■■■□□□"<<endl;
if(i==8)
cout<<"□□□□□■■■□□"<<endl;
if(i==9)
cout<<"□□□□□□■■■□"<<endl;
if(i==10)
cout<<"□□□□□□□■■■"<<endl;
if(i==11)
cout<<"□□□□□□□□■■"<<endl;
if(i==12)
cout<<"□□□□□□□□□■"<<endl;
_sleep(speed);
}
goto re;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-27 14:35
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
re:
int speed=50;
srand(time(NULL));
for(int i=1; i<=10; i++)
{
system("cls");
if(i==1)
cout<<"■□□□□□□□□□"<<endl;
if(i==2)
cout<<"■■□□□□□□□□"<<endl;
if(i==3)
cout<<"■■■□□□□□□□"<<endl;
if(i==4)
cout<<"□■■■□□□□□□"<<endl;
if(i==5)
cout<<"□□■■■□□□□□"<<endl;
if(i==6)
cout<<"□□□■■■□□□□"<<endl;
if(i==7)
cout<<"□□□□■■■□□□"<<endl;
if(i==8)
cout<<"□□□□□■■■□□"<<endl;
if(i==9)
cout<<"□□□□□□■■■□"<<endl;
if(i==10)
cout<<"□□□□□□□■■■"<<endl;
_sleep(speed);
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-27 14:40
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int speed=50;
re:
for(int i=1;i<=12;i++)
{
system("cls");
if(i==1)
cout<<"□□□□□□□□□□"<<endl;
if(i==2)
cout<<"■□□□□□□□□□"<<endl;
if(i==3)
cout<<"■■□□□□□□□□"<<endl;
if(i==4)
cout<<"■■■□□□□□□□"<<endl;
if(i==5)
cout<<"□■■■□□□□□□"<<endl;
if(i==6)
cout<<"□□■■■□□□□□"<<endl;
if(i==7)
cout<<"□□□■■■□□□□"<<endl;
if(i==8)
cout<<"□□□□■■■□□□"<<endl;
if(i==9)
cout<<"□□□□□■■■□□"<<endl;
if(i==10)
cout<<"□□□□□□■■■□"<<endl;
if(i==11)
cout<<"□□□□□□□■■■□"<<endl;
if(i==12)
cout<<"□□□□□□□□■■■"<<endl;
_sleep(speed);
}
goto re;
}
複製代碼
作者:
李偈睿
時間:
2024-8-10 13:54
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
string a[]{"■■□□□□□□□■","■■■□□□□□□□","□■■■□□□□□□","□□■■■□□□□□","□□□■■■□□□□","□□□□■■■□□□","□□□□□■■■□□","□□□□□□■■■□",
"□□□□□□□■■■","■□□□□□□□■■"};
re:
for(int i=0; i<=9 ; i++)
{
system("cls");
cout<<a[i]<<endl;
_sleep(100);
if(i==9)
{
i==0;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2