22,2
This commit is contained in:
parent
023da99602
commit
d22428779d
@ -1,26 +1,26 @@
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
int main() {
|
||||
int lines_count = 0;
|
||||
int c;
|
||||
int lines = 0;
|
||||
|
||||
while ((c = getchar()) != EOF) {
|
||||
if (islower(c)) {
|
||||
putchar(toupper(c));
|
||||
} else if (isupper(c)) {
|
||||
putchar(tolower(c));
|
||||
} else {
|
||||
if (c >= 'a' && c <= 'z') {
|
||||
c -= 32;
|
||||
} else if (c >= 'A' && c <= 'Z') {
|
||||
c += 32;
|
||||
}
|
||||
|
||||
if (c == '\n') {
|
||||
lines++;
|
||||
}
|
||||
|
||||
if (c >= 32 && c <= 126) {
|
||||
putchar(c);
|
||||
if (c == '\n') {
|
||||
lines_count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
printf("Počet načítaných riadkov: %d\n", lines_count);
|
||||
printf("\nPočet načítaných riadkov: %d\n", lines);
|
||||
|
||||
return 0;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user