This commit is contained in:
Michal Utľák 2024-02-21 14:24:42 +00:00
parent 655ba5e29e
commit 0728db4408

View File

@ -5,11 +5,12 @@ int main() {
int lines_count = 0; int lines_count = 0;
while ((text = getchar()) != EOF) { while ((text = getchar()) != EOF) {
if (text == '\t') { if (text == '\n') {
putchar('\t');
} else if (text == '\n') {
lines_count++;
putchar('\n'); putchar('\n');
lines_count++;
} else if (text == '\t') {
putchar('\t');
continue;
} else if (text >= 'a' && text <= 'z') { } else if (text >= 'a' && text <= 'z') {
putchar(text - 'a' + 'A'); putchar(text - 'a' + 'A');
} else if (text >= 'A' && text <= 'Z') { } else if (text >= 'A' && text <= 'Z') {
@ -21,6 +22,6 @@ int main() {
} }
} }
printf("Lines count: %d\n", lines_count); printf("\nLines count: %d\n", lines_count);
return 0; return 0;
} }