package com.bowen.dong; /** * * @author bw * */ public class Example005 { public static void main(String[] args) throws Exception { char a[] = new char[26]; for(int i=0;i<26;i++) { a[i]=(char)('A'+i); System.out.print(a[i]+" "); if(a[i]=='Z') { System.out.println(""); } } } }