funguj prosimta

This commit is contained in:
Michal Utľák 2024-02-21 14:21:26 +00:00
parent 9ac43be03d
commit 655ba5e29e

View File

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