public class Gift {
private double giftsTotal;
public void enterDollars(double input){
this.giftsTotal += input;
System.out.println("giftsTotal = "+ this.giftsTotal);
}
public void enterEuros(double input){
final double EURO_CONVERSION_RATE = 1.24;
this.giftsTotal = input * EURO_CONVERSION_RATE;
System.out.println("giftsTotal = "+ this.giftsTotal);
}
public void enterYen(double input){
final double YEN_CONVERSION_RATE = 0.0092;
this.giftsTotal = input * YEN_CONVERSION_RATE;
System.out.println("Working in enterYen.");
}
public double getTotalSavings(){
return giftsTotal;
}