Compare commits
No commits in common. "0355e73121357320c4819b1e9ce824a45e17d01b" and "ae41227d7eccd9cfc8364f26b732c73f151b6d66" have entirely different histories.
0355e73121
...
ae41227d7e
@ -1,28 +1,8 @@
|
|||||||
#include <stdio.h>
|
#include<stdio.h>
|
||||||
|
|
||||||
int main() {
|
int main(){
|
||||||
int text;
|
|
||||||
|
|
||||||
<<<<<<< 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");
|
printf("hello world\n");
|
||||||
return 1;
|
return 1;
|
||||||
>>>>>>> ae41227d7eccd9cfc8364f26b732c73f151b6d66
|
|
||||||
|
|
||||||
putchar(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("\nPocet riadkov: 1\n");
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user