What I want to happen - if the date (that is given from the parameters) is equal to the last day of the month, I want the cost to be increased by 10%. I.e if dayOfTravel = last day of the month
public static double ReturnJourneyCost(int journeyID, int dayOfTravel, int monthOfTravel, int yearOfTravel){
Cost = Double.parseDouble(XMLLoad.load(journeyID, 3));
return Cost;
}