Problem

3/10

요소 얻기

Theory Click to read/hide

ArrayList에서 요소 값을 가져오려면  get(index)
메서드를 사용하십시오. 예:

int a = arr. 얻다(0);

배열의 요소 수를 확인하려면 size() 메소드를 사용할 수 있습니다
예:
int count = arr. 크기();

Problem

ArrayList의 모든 값을 반복하고 긍정적인 요소만 출력합니다.

입력: 첫 번째 줄은 배열의 요소 수입니다. 두 번째 줄은 배열의 요소를 포함합니다.
<사업부>
출력: 시퀀스의 긍정적인 요소만 문자열로 인쇄합니다.
 
<헤드> <일># <몸>
입력 출력
1 4
2 -4 0 100
2100
Write the program below
import java.util.ArrayList;
import java.util.Scanner;
public class Main
{
    public static void main(String[] args) {
        int n;
        Scanner in = new Scanner(System.in);
        n = in.nextInt();     

       ArrayList<Integer> arr = new ArrayList<Integer>();

        for(int i=0;i<n;i++) {
            int a = in.nextInt();
            arr.add(a);
        }     
    }
}
          

     

Program check result

To check the solution of the problem, you need to register or log in!