입력 |
5 1 2 3 4 5 |
출력예시 |
1 2 3 4 5 |
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner scan = new Scanner(System.in);
int size = scan.nextInt();
int[] a = new int[size];
for(int i=0; i<a.length; i++){
a[i] = scan.nextInt();
System.out.println(a[i]);
}
}
}
'자바' 카테고리의 다른 글
[JAVA] 언제까지 더해야할까? (0) | 2021.06.08 |
---|---|
[JAVA] 문자 한개를 입력받아 알파벳 출력하기 (0) | 2021.06.08 |
[JAVA] 값을 입력받아 짝수만 출력 (0) | 2021.06.08 |
[JAVA] 값을 입력받아 가장작은수 출력하기 (0) | 2021.06.08 |
[JAVA] 비트단위로 출력 (0) | 2021.06.08 |