https://www.acmicpc.net/problem/2720
import java.util.Scanner;
public class feb08 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s=new Scanner(System.in);
int number=s.nextInt();
int arr[]=new int[] {25,10,5,1};
for(int i=0;i<number;i++) {
int cost=s.nextInt();
int count[]=new int[4];
for(int j=0;j<4;j++) {
count[j]=cost/arr[j];
cost%=arr[j];
}
System.out.println(count[0]+" "+count[1]+" "+count[2]+" "+count[3]);
}
}
}
'JAVA > 백준' 카테고리의 다른 글
[백준/자바] 2864번 5와 6의 차이 (0) | 2022.02.14 |
---|---|
[백준/자바] 1026번 보물 (0) | 2022.02.08 |
[백준/자바] 11047번 동전 0 (0) | 2022.02.07 |
[백준/자바] 10162번 전자레인지 (0) | 2022.02.07 |
[백준/자바] 5585번 거스름돈 (0) | 2022.02.07 |
댓글