Problem

2/10

요소 추가

Theory Click to read/hide

ArrayList에 요소를 추가하기 위한 두 가지 옵션이 있습니다.
add(value);  - ArrayList의 끝에 값 추가
add(index, value); - 인덱스로 올바른 위치에 값을 추가합니다.

예:

도착.추가(10);
도착.추가(5,10); 
 

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();       
 for (Integer a: arr)
              {
                System.out.print(a+" ");
        }
    }
}
       

     

Program check result

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