/**
* @author 冰樱梦
* 时间:2018年下半年
* 题目:显示字符
*1 2 3 4 5 6 7 8 9 :
; < = > ? @ 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
*/
public class Exercise06_12 {
public static void main(String[] args){
printChars( '1', 'Z',10);
}
public static void printChars(char ch1,char ch2,int numberPerLine){
int sum=0;
for(char i=ch1;i<=ch2;i++){
System.out.print(i+" ");
sum++;
if(sum%numberPerLine==0){
System.out.print("\n");
}
}
}
}