본문 바로가기
카테고리 없음

[백준] 5565번: 영수증 - 자바

by IT 정복가 2022. 5. 2.
728x90

https://www.acmicpc.net/problem/5565

 

5565번: 영수증

첫째 줄에 10권의 총 가격이 주어진다. 둘째 줄부터 9개 줄에는 가격을 읽을 수 있는 책 9권의 가격이 주어진다. 책의 가격은 10,000이하인 양의 정수이다.

www.acmicpc.net


[문제]


[코드]

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