pvjc20/du1/program.c

29 lines
360 B
C
Raw Normal View History

2020-02-19 11:13:05 +00:00
#include <stdio.h>
2020-03-01 09:23:10 +00:00
2020-03-01 09:05:25 +00:00
2020-02-29 23:14:45 +00:00
2020-03-01 09:23:10 +00:00
int main() {
2020-03-01 09:02:42 +00:00
2020-03-01 09:23:10 +00:00
char word;
2020-03-01 09:31:29 +00:00
int count = 0;
2020-03-01 09:30:48 +00:00
for (; (word = getchar()) != EOF;) {
2020-02-29 23:14:45 +00:00
if (word >= 'a'&&word <= 'z') {
word -= 32;
}
else if (word >= 'A'&&word <= 'Z'){
word += 32;
}
if (word == '\n') {
2020-03-01 09:29:47 +00:00
count++;
2020-02-29 23:14:45 +00:00
}
putchar(word);
2020-03-01 09:29:47 +00:00
}
2020-03-01 09:32:44 +00:00
printf("\nPočet riadkov: %d\n", count);
2020-03-01 09:29:47 +00:00
2020-02-19 11:13:05 +00:00
return 0;
2020-03-01 09:23:10 +00:00
2020-02-19 11:13:05 +00:00
}
2020-03-01 09:23:10 +00:00