pvjc24/cv1/program.c
2024-02-21 15:37:18 +00:00

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;
}