绝对可以实现
/*This program tests the eight queens algorithm. Eight queens is a classic chess problem in which eight queens are placed on a standard chessboard in positions such that no queen can capture another queen.
Wrightten by:
Date:
*/
#include
//using namespace std;
#include "皇后1.h"
const int max_board=9;
//structure declarations
struct position
{
1