字符串补0:补多少个? 字符串按8个字符一组进行分割:把分割完的每组字符拼接成一个字符串,把每个字符串作为一个数组元素进行保存 while( strInput = readline() ){ // 补多少个0,如果strInput.length是8的倍数,则不补0 let zeroNum = (strInput.length%8==0 ? 0 : 8-strInput.length%8); for(let i=0; i<zeroNum; i++){ strInput = strInput.concat(0); //str1.concat(str2...