pvjc24/cv1/program.c

30 lines
687 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:29:30 +00:00
#define TAB_WIDTH 4
2024-02-21 13:24:35 +00:00
2024-02-21 13:07:17 +00:00
int main() {
int text;
2024-02-21 13:11:07 +00:00
int lines_count = 0;
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') {
2024-02-21 13:11:07 +00:00
lines_count++;
2024-02-21 13:24:35 +00:00
} else if (text == '\t') {
for (int i = 0; i < TAB_WIDTH; i++) {
putchar(' ');
}
continue;
2024-02-21 13:07:17 +00:00
} 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);
}
2024-02-21 13:11:07 +00:00
printf("\nLines count: %d\n", lines_count);
2024-02-21 13:07:17 +00:00
return 0;
2024-02-21 13:24:35 +00:00
}