SysYTestcases/function_2020/64_alpha_count.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

20 lines
365 B
Plaintext

// Count how many alpha in a string
int main() {
int string[500];
int temp;
int i;
int count;
count = 0;
i = 0;
temp = 0;
while (temp != 10) {
temp = getch();
if (temp > 40 && temp < 91 || temp > 96 && temp < 123) {
count = count + 1;
}
i = i + 1;
}
putint(count);
return 0;
}