This commit is contained in:
Kozar 2024-02-21 18:36:38 +01:00
parent d55b76206f
commit f4afeeecb0

View File

@ -14,12 +14,13 @@ int main(){
else if (c == '\n') {
line_count++; // Zvýšte počítadlo riadkov na konce riadka
}
else if (c == '\t'){
putchar(c);
continue;
}
else if (c < ' ' || c >= 127) {
continue; // Preskočiť značky
}
if (c == '\t') {
putchar(c);
}
putchar(c); // Vypíš znak
}