Определить,может ли шахматный конь за один ход попасть из клетки с координатами (x1,y1) в клетку с координатами (x2,y2).

KristinkaOvchin KristinkaOvchin    3   29.05.2019 17:50    0

Ответы
Bill542 Bill542  28.06.2020 23:01
#include "stdafx.h"
 #include <iostream>
#include <stdio.h>
using namespace std;
int main ()
 {
unsigned short int x1,y1,x2,y2;
cout << "Input x1: ";
cin>> x1;
cout<<endl<<"Input y1: ";
cin>> y1;
cout << "Input x2: ";
cin>> x2;
cout<<endl<<"Input y2: ";
cin>> y2;
if ((abs(x2-x1)!=1) || (abs(y2-y1) !=2))
{cout<<"NOT";} else
{cout<<"OK"<<endl;}
system("PAUSE");
return 0;
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика