diff --git a/pea2plus.cpp b/pea2plus.cpp index 1b30fa4..7310f54 100755 --- a/pea2plus.cpp +++ b/pea2plus.cpp @@ -439,6 +439,7 @@ int main(int argc, char *argv[]) // Wyswietlenie trasy unsigned distFromStart = 0; unsigned length = 0; + cout << endl; cout << route.at(0) << '\t' << length << '\t' << distFromStart << endl; for(int i = 1; i < route.size(); i++) { @@ -448,7 +449,6 @@ int main(int argc, char *argv[]) cout << route.at(i) << '\t' << length << '\t' << distFromStart << endl; } - cout << endl; cout << "Dlugosc trasy: " << distFromStart << endl; cout << endl; cout << "Czas wykonania algorytmu [s]: " << clock.read() << endl;