This commit is contained in:
Yaroslav Orlianskyi 2022-02-20 13:33:26 +01:00
parent 8677defd3f
commit 5ae1e8f5aa

View File

@ -2,19 +2,23 @@
int main(){
int c = 1;
int a = 0;
int b = 0;
char small[] = "abcdefghijklmnopqrstuvwxyz";
char big[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
while(c = 1){
c = getchar();
for(int i = 0; i < 26; i++){
if(c == small[i]){
c = big[i];
while(a < 26){
if(c == small[a]){
c = big[a];
break;
}else if(c == big[i]){
c = small[i];
}else if(c == big[a]){
c = small[a];
break;
}
}
b++;
}
printf("Vot = %d and vot = %d\n", a, b);
return 0;
}