728x90
import java.io.*;
public class chp4_8_10 {
public static void main(String[] args) throws java.io.IOException{
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(input.readLine());
n = 1000 - n;
int cnt=0;
while(n>=500) {
n -= 500;
cnt++;
}
while(n>=100) {
n -= 100;
cnt++;
}
while(n>=50) {
n -= 50;
cnt++;
}
while(n>=10) {
n -= 10;
cnt++;
}
while(n>=5) {
n -= 5;
cnt++;
}
while(n>=1) {
n -= 1;
cnt++;
}
System.out.println(cnt);
}
}
반응형
'전.java' 카테고리의 다른 글
복소수 클래스 (Complex) (0) | 2021.02.08 |
---|---|
분수 클래스 (Fraction) (0) | 2021.02.08 |
숫자 찍기 (0) | 2021.02.07 |
구구단 (0) | 2021.02.07 |
연산 (곱셈, 분수) (0) | 2021.02.07 |