#include <stdio.h>
int main(void)
{
int c1 = 0, c2 = 0;
char ch;
while((ch = getchar()) != '#'){
switch(ch){
case 'a':
case 'h': c1++;
default: c2++;
}
}
printf("c1=%d,c2=%d\n", c1, c2); /* 中间、前、后都没有空格 */
return 0;
}
为什么输出的c1=2,c2=5;