Multijoueur

This commit is contained in:
2025-09-10 17:27:29 +02:00
parent ca552281c9
commit 2412cd021a
6 changed files with 19 additions and 3 deletions

View File

@@ -14,8 +14,12 @@ void bubblesort(int* array, int length)
tmp = array[i-1];
array[i-1] = array[i];
array[i] = tmp;
swapped++;
swapped=1;
}
}
} while(swapped==1);
}