28 lines
593 B
C
28 lines
593 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int text;
|
|
int riadky = 0;
|
|
|
|
while ((text = getchar()) != EOF) {
|
|
if (text == '\n') {
|
|
putchar('\n');
|
|
riadky++;
|
|
} else if (text == '\t') {
|
|
putchar('\t');
|
|
continue;
|
|
} else if ((text >= 'a' && text <= 'z') || (text >= 'A' && text <= 'Z')) {
|
|
putchar(text ^ ' ');
|
|
} else if ((text >= 32 && text < 127) || text == 9) {
|
|
putchar(text);
|
|
} else {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
printf("\nPocet riadkov: %d\n", riadky);
|
|
|
|
return 0;
|
|
}
|
|
|