코드 그라데이션
For문과 For-each문의 직관적 비교 예시 본문
두 개가 같은 것이다.
if문
public class Example {
public static void main(String[] args {
String[] numbers = {"one", "two", "three"}
for (int i = 0; i<numbers.length; i++) {
System.out.println(number);
}
}
for each 문
public class Example {
public static void main(String[] args {
String[] numbers = {"one", "two", "three"}
for (String number: numbers) {
System.out.println(number);
}
}
728x90
'Java > 간단한 Quiz' 카테고리의 다른 글
별찍기 피라미드 질문(chat GPT 답변) (0) | 2023.03.21 |
---|---|
스트림 퀴즈 (0) | 2023.02.24 |
성적 출력 프로그램 (0) | 2023.01.14 |
숫자 UP-DOWN 게임 (0) | 2023.01.14 |
가위바위보 게임 만들기 (0) | 2023.01.14 |
Comments