- #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;
- }
複製代碼 |