Compare commits
2 Commits
9f3cb06f00
...
dcf8e054b1
Author | SHA1 | Date | |
---|---|---|---|
dcf8e054b1 | |||
6a2397b937 |
BIN
du1/program
Executable file
BIN
du1/program
Executable file
Binary file not shown.
31
du1/program.c
Normal file
31
du1/program.c
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
int c= 0;
|
||||||
|
int n=0; // pocet nacitanych znakov
|
||||||
|
while(1){
|
||||||
|
c = getchar();
|
||||||
|
|
||||||
|
if(c!=-1){ //-1 eof koniec vstupu
|
||||||
|
if( c >= 'a' && c <= 'z'){ //porovnavam cisla v ascii tabulke
|
||||||
|
c=c+'A'-'a'; //velke pismeno na male
|
||||||
|
}
|
||||||
|
else if(c >= 'A' && c <= 'Z'){
|
||||||
|
c=c-'A'+'a'; //male pismeno na velke
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
n++;
|
||||||
|
putchar(c);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
printf("Pocet riadkov: %d\n", n); //vypise pocet zpouzitych znakov
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user