如果从键盘上输入china#<回车>刚输出的结果为?
#include <stdio.h>main()
{ int v1=0,v2=0;
char ch;
while((ch=getchar())!='#')
switch(ch)
{ case 'a':
case 'h':
case 'o': v2++;
default : v1++;
}
printf("%d,%d\n",v1,v1);
}
这个程序怎么看都看不懂,第一次输入‘C’是怎么算的?case 'o': v2++;这句起到什么样作用?怎么会用到这一句,不是说输入china#的吗?怎么会扯到O的呢?