[Quiz] A-Z 까지 배열에 저장하고 10개씩 끊어 출력하기
23 Aug 2021 -
Less than 1 minute read
A-Z 까지 배열에 저장하고 10개씩 끊어 출력하기
public class ArrayQuiz {
public static void main(String[] args) {
char[] alphabets = new char[26];
char ch = 'A';
int count = 0;
for (int i = 0; i < alphabets.length; i++) {
alphabets[i] = ch++;
count++;
System.out.print(alphabets[i] +","+ (int)alphabets[i] + "\t");
if (count % 10 == 0) {
System.out.println("\n");
}
}
}
}