The number after the decimal point is not a well defined concept. For example for "4.24", it could be "0.24", "0.239999999999" (or similar), "24" or "239999999999".
You need to be clear if you are talking about a number or a string of decimal digits ... and whether the input value is a representation of a binary floating point number (in which case "4.24" is most likely an approximation) a decimal floating point number.
Depending on your interpretation, the correct answer will be different.
But i didn't get the proper answer because when I converted d.toString() the answer is 14.999999999999986.
You are running up against the problem that double and float are base-2 floating point formats, and in most cases they CANNOT represent decimal floating point numbers precisely. There is no fix for this ... apart from using something like BigDecimal to represent your numbers. (And even then, some loss of precision is possible whenever you do a division or modulo operation.)
15from1.15. Only Arjun's nailed it so far, because he saw this problem for what it really is: a String parsing question. Just because the poster tried using math doesn't mean the answer has to follow the same path. – Paul Jan 17 '12 at 6:5215as the answer (2nd line of his post) and his code was giving him14.9999.... Change the question from numbers to text and it's still the same problem: given a stringabc.def, how does he extract justdef? – Paul Jan 17 '12 at 7:12