oprava
This commit is contained in:
parent
086edc9fe2
commit
e53d57b377
@ -1,3 +1,4 @@
|
||||
c
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
@ -11,7 +12,6 @@ int main(void) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
if (c < 32 || c == 127) {
|
||||
continue;
|
||||
}
|
||||
@ -21,11 +21,10 @@ int main(void) {
|
||||
} else if (c >= 'A' && c <= 'Z') {
|
||||
putchar(c - 'A' + 'a');
|
||||
} else {
|
||||
|
||||
putchar(c);
|
||||
}
|
||||
}
|
||||
|
||||
printf("\nPocet riadkov: %d\n", riadky);
|
||||
printf("Pocet riadkov: %d\n", riadky); /* Bez \n pred textom */
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user