I have a question about printing in consoles in Java. My problem is that, I
want to print a string
at the console, at a specified location.
The function I am looking for (say anyfunction) should do the following,
anyfunction(int location1, String text1, int location2, String text2 ..)
This function shoud print text1 at location 1, and then give an offset, and
then print text2 at location 2.
I hope I could clarify my problem..:)
Is there any such a method, I can use in Java standard api?
Thank you for your help.