相信大家写业务逻辑的时候,都是面向if、else、for、while、switch编程。但是你见过switch嵌套do..while吗? 先上代码 void send( int * to, int * from, int count) case 0 : do { * to ++ = * from ++ ; case 7 : * to ++ = * from ++ ; case 6 ...