以下函数实现按每行8个输出w所指数组中的数据
if( i%8==0) printf("\n");
if( i/8==0) continue;
if( i/8==0 ) printf("\n");
if( i%8==0 ) continue;
当i为8的倍数时,输出一个回车符,只有A)符合题意。