728x90
https://www.acmicpc.net/problem/5565
[문제]
[코드]
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int total = sc.nextInt();
for(int i = 0; i < 9; i++) {
int book = sc.nextInt();
total -= book;
}
System.out.println(total);
sc.close();
}
}
[설명]
1. 총 책 값을 입력받는다.
2. for문을 돌려 9개의 책값을 입력받는다.
4. 총 책 값에서 책 9개의 값을 다 빼준다.
5. 총 책 값에서 9개의 책값을 뺀 값을 출력해준다.
[결과]
728x90