커피머신에 남아있는 재료의 양으로 커피를 만들 수 있는지 없는지 여부를 판단하는 로직을 짜야함. import java.util.Scanner; /** * the coffee machine needs 200 ml of water, 50 ml of milk, and 15 g of coffee beans to make one cup of coffee. * Example 1 * * Write how many ml of water the coffee machine has: * > 300 * Write how many ml of milk the coffee machine has: * > 65 * Write how many grams of coffee beans the coffee machine has: * > 10..