I noticed when I typed in System.out.print(), Codeacademy said it was incorrect, yet, when I put in System.out.println(), it was correct.
I know that the difference between the two is that print() will print the output all in one line, like this:
hello world
While println() will print the output by seperating the lines, like this:
hello
world
Are there any differences I need to know between those two specifically in terms of variables as well as in a more general scope of Java programming
Edit: I noticed this has been happening throughout the “manipulating variables” unit. Which one and when do you use the two?