- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- cout<<"跑馬燈"<<endl<<endl;
- system("pause");
- system("cls");
- srand(time(NULL));
- int ball;
- for(int i=1; i<=100; i++)
- {
- if(i%2==0)
- cout<<" ■□□□□□□□□□"<<endl;
- system("cls");
- cout<<" ■■□□□□□□□□"<<endl;
- system("cls");
- cout<<" ■■■□□□□□□□"<<endl;
- system("cls");
- cout<<" ■■■■□□□□□□"<<endl;
- system("cls");
- cout<<" ■■■■■□□□□□"<<endl;
- system("cls");
- cout<<" ■■■■■■□□□□"<<endl;
- system("cls");
- cout<<" ■■■■■■■□□□"<<endl;
- system("cls");
- cout<<" ■■■■■■■■□□"<<endl;
- system("cls");
- cout<<" ■■■■■■■■■□"<<endl;
- system("cls");
- cout<<" ■■■■■■■■■■"<<endl;
- ball=rand()%10;
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |