- class printascii
- {
- public static void main(String[] args)
- {
- String str; //定义一个字符串变量 用来存储将要被打印的值
- for(int x=32;x<=126;x++){ //按要求循环
- str=(char)x+" "; //给str赋值为x的ASIC码
- if(x<100){ //如果ASIC码的值小于100
- str="0"+(str); //在str中加入 0
- }
- if((x-32)%8==0&&x!=32){ //如果x的-32的值余上8等于0 就换行
- System.out.println();
- }
- System.out.print(str); //打印出结果
- }
- }
- }
复制代码
|