- class Test
- {
- public static void main(String[] args)
- {
- char []b = new char[95];
- int count = 0;
- for(int i =32; i <=126; i++)
- {
- b[count] = (char)i;
- if ((i-32)%8==0)
- System.out.println();
- if(i<100)
- {
- System.out.print("0"+b[count]+"===="+i+",");
- }
- else
- {
- System.out.print(b[count]+"===="+i+",");
- }
-
- count++;
-
- }
-
- }
- }
复制代码
我直接复制你代码!~然后修改的!!你的Exception提示你是数组角标越界!!可能你做得太快了~感觉不少细节方面都有问题~因为我隔了很长一段时间没碰code的了~所以只能给这些建议先!我的代码你可以看看~我自己实验过的 |