Compare commits
2 Commits
fc919bf24f
...
efbdedcbd0
Author | SHA1 | Date | |
---|---|---|---|
efbdedcbd0 | |||
2ad0ce0f99 |
@ -2,23 +2,30 @@
|
|||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
int text;
|
int text;
|
||||||
|
<<<<<<< HEAD
|
||||||
|
int lines_count = 0;
|
||||||
|
|
||||||
|
=======
|
||||||
|
>>>>>>> fc919bf24f3667c09c78a8a23ed365424347b363
|
||||||
while ((text = getchar()) != EOF) {
|
while ((text = getchar()) != EOF) {
|
||||||
if (text >= 'a' && text <= 'z') {
|
if (text >= 'a' && text <= 'z') {
|
||||||
text = text - 'a' + 'A';
|
text = text - 'a' + 'A';
|
||||||
} else if (text >= 'A' && text <= 'Z') {
|
} else if (text >= 'A' && text <= 'Z') {
|
||||||
text = text - 'A' + 'a';
|
text = text - 'A' + 'a';
|
||||||
} else if (text == '\n') {
|
} else if (text == '\n') {
|
||||||
printf("\n");
|
lines_count++;
|
||||||
continue;
|
|
||||||
} else if (text < 32 || text == 127) {
|
} else if (text < 32 || text == 127) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
printf("hello world\n");
|
printf("hello world\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
>>>>>>> fc919bf24f3667c09c78a8a23ed365424347b363
|
||||||
|
|
||||||
putchar(text);
|
putchar(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\nPocet riadkov: 1\n");
|
printf("\nLines count: %d\n", lines_count);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user