Your while-loop executes once, then checks the value of the variable answer to see if it is equal to 'j' and to see if k less than three. The only way this will execute more than once is if you type in the letter 'j' for answer.
But what are you trying to do? It looks like you're trying to loop up to three times to see if the user enters a value into your double array. I can only guess.
Well I want the user to have the option of choosing a number three times which then will be added together. But after the loop has executed three times I still get the output "Try again" and no matter what I type I still get the final output of the three numbers added together. So the sum is correct, but it would just look more neat if the loop would stop executing after k=3. Hope it makes sense what I'm saying