/* * 다음은 거스름돈을 몇 개의 동전으로 지불할 수 있는지를 계산하는 문제이다. * 변수 money의 금액을 동전으로 바꾸었을 때 각가 몇 개의 동전이 필요한지 * 계산해서 출력하라. 단, 가능한 한 적은 수의 동전으로 거슬러 주어야한다. * (1)에 알맞은 코드를 넣어서 프로그램을 완성하시오. * %나눗셈 연산자와 나머지 연산자 사용할 것 */ package cbnu; public class Change { public static void main(String[] args) {// TODO Auto-generated method stub int[] quotient = new int[4];int remainder;int[] coin = { 500, 100, 50, 10 };int money = 94..
/*로또 프로그램1. 로또 번호 생성 1~45 랜덤숫자 6개2. 로또 추첨 및 생성해놓은 숫자로 확인3. 1~2를 일정 랭크가 나올 때까지 반복 (rank) */ package cbnu; import java.util.Scanner; public class LottoGame {static int size = 6;static GenerateLottoNumber gln = new GenerateLottoNumber();static Lotto lotto = new Lotto();static int[] myNum = null;static int[] pubNum = null;static int[] good = null;static int rank = 6; public static void main(String[]..
// Up & Down과 비슷한 게임 방식 import java.util.Scanner; public class First { static int up = 100;static int down = 1;static int count = 0; public static void main(String[] args) {// TODO Auto-generated method stub int ran = (int) (Math.random() * 99) + 1; // 1~100사이의 random value System.out.println(ran);System.out.println("1~100사이의 숫자를 입력해봐"); while (true) {++count;Scanner scan = new Scanner(System.in..