This commit is contained in:
Michal Utľák 2024-02-21 13:08:36 +00:00
parent 0355e73121
commit fc919bf24f

View File

@ -2,8 +2,6 @@
int main() { int main() {
int text; int text;
<<<<<<< HEAD
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';
@ -15,10 +13,8 @@ int main() {
} else if (text < 32 || text == 127) { } else if (text < 32 || text == 127) {
continue; continue;
} }
=======
printf("hello world\n"); printf("hello world\n");
return 1; return 1;
>>>>>>> ae41227d7eccd9cfc8364f26b732c73f151b6d66
putchar(text); putchar(text);
} }