/**
* @author:朱凌风
* @weather:"海马"号台风、暴雨
* @date:06/23/2011
* @function:输出字母方阵
*/
package com.jerome;
public class Example11 {
public static void main(String[] args) {
char[] ch={'a','b','c','d','e','f','g','h','i','j','k','l','m',
'n','o','p','q','r','s','t','u','v','w','x','y','z'};
char[][] ch1=new char[26][26];
for(int i=0;i<26;i++) {
for(int j=0;j<26;j++) {
ch1[i][j]=ch[(i+j)%26];
System.out.print(ch1[i][j]+" ");
}
System.out.println("");
}
}
}