This commit is contained in:
Michal Utľák 2024-02-21 14:44:32 +00:00
parent 78c9d0765b
commit 4a19e693a0

View File

@ -13,14 +13,15 @@ int main() {
continue;
} else if ((text >= 'a' && text <= 'z') || (text >= 'A' && text <= 'Z')) {
putchar(text ^ ' ');
} else if (text < 32 || text == 127) {
continue;
} else {
} else if ((text >= 32 && text < 127) || text == 9) {
putchar(text);
} else {
continue;
}
}
printf("\nLines count: %d\n", lines_count);
return 0;
}