changes
This commit is contained in:
parent
3573df2b7e
commit
55136fc05d
@ -14,13 +14,12 @@ 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
|
||||
}
|
||||
else if (c == '\t') {
|
||||
putchar(c); // Print the tab character
|
||||
}
|
||||
|
||||
putchar(c); // Vypíš znak
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user