prosim
This commit is contained in:
parent
78c9d0765b
commit
4a19e693a0
@ -13,14 +13,15 @@ int main() {
|
|||||||
continue;
|
continue;
|
||||||
} else if ((text >= 'a' && text <= 'z') || (text >= 'A' && text <= 'Z')) {
|
} else if ((text >= 'a' && text <= 'z') || (text >= 'A' && text <= 'Z')) {
|
||||||
putchar(text ^ ' ');
|
putchar(text ^ ' ');
|
||||||
} else if (text < 32 || text == 127) {
|
} else if ((text >= 32 && text < 127) || text == 9) {
|
||||||
continue;
|
|
||||||
} else {
|
|
||||||
putchar(text);
|
putchar(text);
|
||||||
|
} else {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\nLines count: %d\n", lines_count);
|
printf("\nLines count: %d\n", lines_count);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user