From c43489c78d1b047546e52ac2134e20d31806ccf0 Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Tue, 7 Apr 2020 15:29:29 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Edu5/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du5/program.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/du5/program.c b/du5/program.c index aeaba7c..668d087 100644 --- a/du5/program.c +++ b/du5/program.c @@ -66,9 +66,9 @@ int main(){ else if(newScore[i] == newScore[i + 1]){ //Name sorting int test = 0; for(int q = 0; q < newPos; q++){ - printf("--Testing--\n"); + // printf("--Testing--\n"); if(newName[i][q] > newName[i + 1][q]){ - printf("Letters |%c %c|\n", newName[i][q], newName[i + 1][q]); + // printf("Letters |%c %c|\n", newName[i][q], newName[i + 1][q]); int tmpScore = newScore[i]; newScore[i] = newScore[i + 1]; newScore[i + 1] = tmpScore; @@ -77,7 +77,7 @@ int main(){ strcpy(tmpName, newName[i]); strcpy(newName[i], newName[i + 1]); strcpy(newName[i + 1], tmpName); - printf("|If|\n"); + // printf("|If|\n"); break; } else if(newName[i][q] < newName[i + 1][q]){