pvjc24/cv1/program.c

24 lines
499 B
C
Raw Normal View History

2024-02-21 13:07:17 +00:00
#include <stdio.h>
2024-02-17 10:42:30 +00:00
2024-02-21 13:07:17 +00:00
int main() {
int text;
2024-02-17 10:42:30 +00:00
2024-02-21 13:07:17 +00:00
while ((text = getchar()) != EOF) {
if (text >= 'a' && text <= 'z') {
text = text - 'a' + 'A';
} else if (text >= 'A' && text <= 'Z') {
text = text - 'A' + 'a';
} else if (text == '\n') {
printf("\n");
continue;
} else if (text < 32 || text == 127) {
continue;
}
2024-02-17 10:42:30 +00:00
2024-02-21 13:07:17 +00:00
putchar(text);
}
printf("\nPocet riadkov: 1\n");
return 0;
2024-02-17 10:42:30 +00:00
}