Posted By: robosycho |
5/8/2006 5:42:00 PM |
Reply To: jnox who posted...
|
|
What jnox means to say is, there is a character that will insert the newlines or 'enter' that you want. Simply put \n whereever you need a new line. So if I wanted to write the phrase: Hello!
Goodbye!
Then I would write:
System.out.println("Hello\nGoodbye");
Similar to this are the tab \t and quotations \"
|
|