循环输出a-z(通过ASCII)并且每一行的长度 是4 例如:abcd efgh……
int j=0; for(char c='a';c<='z';c++) { printf("%c",c); j++; if(j==4) { printf("\n"); j=0; } }