향상된 for문

HC·2022년 8월 2일
0
for(변수 : 배열변수){
	System.out.println(변수);
}

배열의 경우는 향상된 for문을 이용해 간단하게 배열의 값들을 모두 표현할 수 있다.
배열의 길이는 상관하지 않고, 처음부터 끝까지 표현한다.

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int t = sc.nextInt();
	int arr[] = new int[t];
	for(int i = 0 ; i < t ; i++) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		arr[i] = a+b;
	}
	for(int item : arr) {
		System.out.println(item);
	}
	}
}

백준 10950번 풀면서 제대로 알게됨

profile
오류보고

0개의 댓글