ok i'm tryiing to convert a double into a string to get the 1st character of that number.
change = (amountPaid - total);
String dollars = Double.toString(change);
String firstNum = dollars.charAt(0);
i got an imcompatiable type error on that part.
change, amountPaid, total are double.