void ShowBinary(int a){ if(a==0) return; ShowBinary(a>>1); Print(a & 1); }
Posted by m1rf539w 2013年2月23日 21:53
Category: 未分类 Tag: Comment: (0)