diff --git a/du5/program.c b/du5/program.c index befd007..b7bbd8c 100644 --- a/du5/program.c +++ b/du5/program.c @@ -67,7 +67,7 @@ int main(){ int test = 0; for(int q = 0; q < newPos; q++){ if(newName[i][pos] < newName[i + 1][pos]){ - printf("Letters %c %c\n", newName[i][pos], newName[i + 1][pos]); + // printf("Letters %c %c\n", newName[i][pos], newName[i + 1][pos]); int tmpScore = newScore[i]; newScore[i] = newScore[i + 1]; newScore[i + 1] = tmpScore; @@ -76,7 +76,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][pos] > newName[i + 1][pos]){