import java.util.*; /** * HJ98 自动售货系统 */ public class HJ098 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] prices = {2, 3, 4, 5, 8, 6}; int[] numbers = new int[6]; int[] coins = new int[4]; int balance = 0; while (sc.hasNext()) { String s = sc.nextLine(); Strin...