From 1b472018b771fcbcdebdc111d500e5fbe52211d8 Mon Sep 17 00:00:00 2001 From: Crackhoff Date: Mon, 8 Oct 2018 15:59:59 +0200 Subject: [PATCH] =?UTF-8?q?Wyeliminowanie=20prostszych=20kombinacji=20wej?= =?UTF-8?q?=C5=9Bcia=20i=20wyj=C5=9Bcia=20issue=20#26?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index e99bc71..6f15b4a 100644 --- a/main.cpp +++ b/main.cpp @@ -3,7 +3,7 @@ #include /* time */ #include #include - +#include // code from https://gist.github.com/Nircek // under MIT license #include @@ -97,9 +97,16 @@ void beginingcoords() { // bierze poczontkowe koordy i wrzuca do zmiennej player_coords = randomCoords(); } void targetcoords() { // bierze koordy celu/wyjścia i wrzuca do zmiennej - end_coords = randomCoords(); -} + int rozmiar ,rzmr,sm=SIZE,sn=SIZE ; + do{ + end_coords = randomCoords(); + rozmiar = sqrt(2*pow(mapa[0].size(),2))/2; + rzmr = sqrt(pow(player_coords.x-end_coords.x,2)+pow(player_coords.y-end_coords.y,2)); + cout << rzmr << " "<< rozmiar << endl; + }while (rzmr