Compare commits

..

No commits in common. "0355e73121357320c4819b1e9ce824a45e17d01b" and "ae41227d7eccd9cfc8364f26b732c73f151b6d66" have entirely different histories.

View File

@ -1,28 +1,8 @@
#include <stdio.h>
#include<stdio.h>
int main() {
int text;
int main(){
<<<<<<< HEAD
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') {
printf("\n");
continue;
} else if (text < 32 || text == 127) {
continue;
}
=======
printf("hello world\n");
return 1;
>>>>>>> ae41227d7eccd9cfc8364f26b732c73f151b6d66
putchar(text);
}
printf("\nPocet riadkov: 1\n");
return 0;
}