반응형
1. Scanner를 이용한 방법
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int[] list = {1, 1, 2, 2, 2, 8};
int[] input = new int[6];
for(int i=0; i<6; i++){
input[i] = sc.nextInt();
}
for(int i=0; i<6; i++){
list[i] -= input[i];
System.out.print(list[i] + " ");
}
sc.close();
}
}
2. BufferedReader를 이용한 방법
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main{
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] list = {1, 1, 2, 2, 2, 8};
int[] input = new int[6];
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for(int i=0; i<6; i++){
input[i] = Integer.parseInt(st.nextToken());
}
for(int i=0; i<6; i++){
list[i] -= input[i];
System.out.print(list[i] + " ");
}
br.close();
}
}
기본 개수를 배열로 선언해준 뒤에, 입력받은 배열을 기존 배열에서 빼주면 된다.
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 10988 - 팰린드롬인지 확인하기 (JAVA/ 자바) (0) | 2024.03.06 |
---|---|
[백준] 2444 - 별 찍기(7) (JAVA/ 자바) (0) | 2024.03.05 |
[백준] 25083 - 새싹 (0) | 2024.03.03 |
[백준] 11718 - 그대로 출력하기 (0) | 2024.03.02 |
[백준] 5622 - 다이얼 (0) | 2024.03.01 |