728x90
1. for 문
char[] com = { ‘C’, ‘o’, ‘m’, ‘p’, ‘u’, ‘t’, ‘e,’ ‘r’};
// ...
for (int i = 0; i < com.length; i++)
System.out.println(com[i]);
2. 개선된 for 문
char[] com = { ‘C’, ‘o’, ‘m’, ‘p’, ‘u’, ‘t’, ‘e,’ ‘r’};
// ...
for (char c: com)
System.out.println(c);
반응형
'전.java' 카테고리의 다른 글
별찍기 (다이아몬드 모양) (0) | 2021.02.01 |
---|---|
윤년인지 판별 (isDigit() 함수 이용하여 입력 받음) (0) | 2021.01.31 |
문자열에서 문자 'r' 위치 구하기 (0) | 2021.01.31 |
char 형 배열 (for, while, do while 문) (0) | 2021.01.31 |
팩토리얼 (while, do while 문) (0) | 2021.01.31 |