Quiz: print and println
Click Start and put your answer below.
What do these statements print? System.out.print(3); System.out.println(4 + 5); |
39 |
4 + 5 is 9. And note that print doesn't make a new line, so 9 comes right after 3. |