SAD
This commit is contained in:
parent
9f3f30fe2c
commit
4a50937dab
@ -2,32 +2,17 @@
|
|||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
int c = 0;
|
int c = 0;
|
||||||
int a = 0;
|
char a;
|
||||||
int counter = 0;
|
while(1){
|
||||||
char small[] = "abcdefghijklmnopqrstuvwxyz";
|
|
||||||
char big[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
||||||
char d;
|
|
||||||
while(c = 1){
|
|
||||||
c = getchar();
|
c = getchar();
|
||||||
d = c;
|
if(c == EOF)
|
||||||
int a = 0;
|
|
||||||
if(d == '\n'){
|
|
||||||
counter++;
|
|
||||||
break;
|
break;
|
||||||
|
if (c >= 'a' && c <= 'z')
|
||||||
|
c = c - 'a' + 'A';
|
||||||
|
else if(c >= 'A' && c <= 'Z')
|
||||||
|
c = c - 'A' + 'a';
|
||||||
|
a = c;
|
||||||
|
putchar(a);
|
||||||
}
|
}
|
||||||
while(a > 26){
|
|
||||||
if(d == small[a]){
|
|
||||||
d = big[a];
|
|
||||||
break;
|
|
||||||
}else if(d == big[a]){
|
|
||||||
d = small[a];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
a++;
|
|
||||||
}
|
|
||||||
c = d;
|
|
||||||
putchar (c);
|
|
||||||
}
|
|
||||||
printf("\nPočet riadkov: %d\n",counter);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user