赞
踩
- #include <iostream>
- #include <algorithm>
- #include <cstdlib>
- #include <ctime>
- #include <cstring>
- #include <string>
- #include <cstdio>
- #define clear() cout << "\033c" << flush
- using namespace std;
-
- const int SIZE = 9;
- int Queen[15][15];
- // 值为0表示不在攻击范围内,可以放置新皇后;
- // 1表示在攻击范围内,不可放置
- // 9和-9表示皇后
-
- // 游戏规则展示
- void intro()
- {
- cout << endl <<" 生化危机 "<<endl<<endl<<"\n"<<endl;
- cout << "===============

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。