pvjc22/du1/program.c
Yaroslav Orlianskyi 5ae1e8f5aa 123
2022-02-20 13:33:26 +01:00

25 lines
384 B
C

#include <stdio.h>
int main(){
int c = 1;
int a = 0;
int b = 0;
char small[] = "abcdefghijklmnopqrstuvwxyz";
char big[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
while(c = 1){
c = getchar();
while(a < 26){
if(c == small[a]){
c = big[a];
break;
}else if(c == big[a]){
c = small[a];
break;
}
}
b++;
}
printf("Vot = %d and vot = %d\n", a, b);
return 0;
}