Контрольная работа: Решение задачи о 8 ферзях

программа размещение ферзь шахматный

Приложение 1

Текст программы

#include <iostream>

#include <conio.h>

#include <iomanip>

#include <windows.h>

using namespace std;

FILE *result;

int opened;

int queens[8], count;

void print_console()

{

cout <<»–=============–\n»;

cout <<» Version #» <<count << «\n»;

cout <<» –===========–\n»;

cout <<» a b c d e f g h \n»;

for (int i=0; i<8; i++)

{

cout <<» +-+-+-+-+-+-+-+-+ \n»;

cout <<» " <<8-i;

for (int j=0; j<8; j++)

{

if (j!=queens[i]) cout << "|»; else cout << "|W»;

}

cout << "|» <<8-i <<»\n»;

}

cout <<» +-+-+-+-+-+-+-+-+ \n»;

cout <<» a b c d e f g h \n\n Press any key to continue…\n»;

К-во Просмотров: 257
Бесплатно скачать Контрольная работа: Решение задачи о 8 ферзях