- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- #include <windows.h>
- using namespace std;
- int main()
- {
- int s[10][10]= {
- {1,0,0,0,0,0,0,0,0,0},
- {0,1,0,0,0,0,0,0,0,0},
- {0,0,1,0,0,0,0,0,0,0},
- {0,0,0,1,0,0,0,0,0,0},
- {0,0,0,0,1,0,0,0,0,0},
- {0,0,0,0,0,1,0,0,0,0},
- {0,0,0,0,0,0,1,0,0,0},
- {0,0,0,0,0,0,0,1,0,0},
- {0,0,0,0,0,0,0,0,1,0},
- {0,0,0,0,0,0,0,0,0,1},
- };
- for(int r=0; r<10; r++)
- {_sleep(50);
- system("cls");
- cout<<" 載入中"<<(r+1)*10<<"% ";
- for(int h=0; h<10; h++)
- {
- cout<<s[r][h];
- _sleep(50);
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |