Compare commits
2 Commits
0bdd5c0058
...
f15275a775
Author | SHA1 | Date | |
---|---|---|---|
f15275a775 | |||
f95070d410 |
25
cv1/program.c
Normal file
25
cv1/program.c
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int lines_count = -1;
|
||||||
|
int c;
|
||||||
|
|
||||||
|
while ((c = getchar()) != EOF) {
|
||||||
|
if (islower(c)) {
|
||||||
|
putchar(toupper(c));
|
||||||
|
} else if (isupper(c)) {
|
||||||
|
putchar(tolower(c));
|
||||||
|
} else {
|
||||||
|
putchar(c);
|
||||||
|
if (c == '\n') {
|
||||||
|
lines_count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Počet načítaných riadkov: %d\n", lines_count);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user