public class Style { String index; String name; int price; int time; int exp; Style(String index, String name, int price, int time, int exp) { this.index = index; this.name = name; this.price = price; this.time = time; this.exp = exp; } } public class Customer { String name; int money; Style[] style; Customer(String name, Style[] style) { this.name = name; this.style = style; } Style dfstyle(in..