Originally Posted by
Norm
Data goes on a new line when you output a newline character. You can keep all the output on one line by NOT outputting a newline character until you want the next output to go to the next line.
The println() method always adds a newline character to the end of the data being printed.
The print() method does NOT add a newline character.
You can manually control where a newline character is added by using "\n" in the data.
I think that there isn`t a solution to my problem. Thanks anyway. I should find a different approach.