Merge branch 'master' of git.kemt.fei.tuke.sk:mu590ku/pvjc24
This commit is contained in:
commit
ed608068a7
@ -1,29 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
int ch;
|
|
||||||
int visibleChars = 0;
|
|
||||||
|
|
||||||
printf("Zadajte text (ukoncite vstup s Ctrl+D):\n");
|
|
||||||
|
|
||||||
while ((ch = getchar()) != EOF) {
|
|
||||||
if (islower(ch)) {
|
|
||||||
ch = toupper(ch);
|
|
||||||
} else if (isupper(ch)) {
|
|
||||||
ch = tolower(ch);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isprint(ch) || ch == '\n') {
|
|
||||||
putchar(ch);
|
|
||||||
if (ch != '\n') {
|
|
||||||
visibleChars++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("\nPocet načítaných riadkov: %d\n", visibleChars);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user