I have an instance variable private double salesTotal; in Java, which I was thinking to assign a default value in the constructor (e.g. 0.00).
private double salesTotal;
C