package pp; public class Produto { private String nome; private float custo; public Produto(String nome, float custo) { this.nome = nome; this.custo = custo; } public String pegaNome() { return nome; } public float pegaCusto() { return custo; } public String toString() { return "Produto: "+pegaNome()+", custo: $"+pegaCusto(); } }