for(int k=0; k<=kmax; k++) { System.out.println(k*dt+" "+ y[0][k]+" "+ y[2][k]); System.out.printf("%7.5f \t %7.5e \t %7.5e \n", k*dt, y[0][k], y[2][k]); }
The result is just the same as that without the sentence System.out.println(k*dt+" "+ y[0][k]+" "+ y[2][k]);
What confusing is when I change the number of line that causes exception by adding other codes or blanks.The exception information do not change at all,so that sometimes the number of line appearing in the exception information points to a comment or a bracket.
I don not have many experience about debugging.Can you give a brief explain about that.
About that sentence I mean that the value of variables could always be followed in debug perspective but I failed this time because of accidental interruption of debugging procedure with a problem "source not found".
Thank you