4.
int func(int a){ int b; switch(a) { case 1: 30; case 2: 20; case 3: 16; default: 0}return b;}则func(1)=?
想问问这里的 b是做什么用的啊?直接返回b 是没有值的啊。。请高人解答。