%1000 - 向右边位数3位取余
11001 % 1000 = 1
/1000 - 去掉右边位数的3位
11001 / 1000 = 11
需要几位数就取几个0,以此类推
取一串数的具体位数
原文:http://www.cnblogs.com/hont/p/5193971.html