package pp; public class Product { private String name; private float cost; public Product(String name, float cost) { this.name = name; this.cost = cost; } public String getName() { return name; } public float getCost() { return cost; } public String toString() { return "Product: "+getName()+", cost: $"+getCost(); } }