removed long printf

This commit is contained in:
Awen Lelu
2026-01-06 16:38:38 +01:00
parent 5041f3c541
commit d266dd855d

View File

@@ -28,7 +28,7 @@ void loop(int hour, int humans, int zombies) {
int new_humans;
int new_zombies;
std:printf("hour: %ld| zombies: %ld| humans: %ld \n", hour, zombies, humans);
std:printf("hour: %d| zombies: %d| humans: %d \n", hour, zombies, humans);
for (int n = 0; n < new_zombies; n++) {
if (rand() % 100 < attack_chance) {