What is the difference between print and println in java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What is the difference between print and println in java

22nd Sep 2018, 6:11 PM
Aaditya
Aaditya - avatar
11 Answers
+ 10
println will add a newline at the end if the printed value print will not
22nd Sep 2018, 6:17 PM
Burey
Burey - avatar
+ 9
println - print the content and also add a new line 😍 print - print the content only 😐
23rd Sep 2018, 10:29 AM
Vishnu
Vishnu - avatar
+ 5
exmple 1print System.out.print("hello"); System.out.print("hello"); //output hellohello ------------------------------------- exmple2 println System.out.println("hello"); System.out.println("hello"); //output hello hello 😊
24th Sep 2018, 11:59 AM
Sam alyafei
Sam alyafei - avatar
+ 4
println for adding new line and print does not.
22nd Sep 2018, 6:59 PM
Noorjahan Khatoon
Noorjahan Khatoon - avatar
+ 3
Thanx 😊
22nd Sep 2018, 6:21 PM
Aaditya
Aaditya - avatar
+ 3
println will add new line. the print value will not. printLine print the logic is Easy 😀
23rd Sep 2018, 3:57 AM
Joshua Martin Fontanilla
Joshua Martin Fontanilla - avatar
+ 3
println adds a new line Character to the end of what it prints. print does not
24th Sep 2018, 6:42 AM
Rick Shiffman
Rick Shiffman - avatar
+ 2
when you write println the program will add a new line
22nd Sep 2018, 11:47 PM
Khalid Nadif
Khalid Nadif - avatar
+ 1
System.out.println() == System.out.print('\n')
23rd Sep 2018, 11:36 PM
Chriptus13
Chriptus13 - avatar
+ 1
Difference between the methods print() and println() The println("...") method prints the string "..." and moves the cursor to a new line. The print("...") method instead prints just the string "...", but does not move the cursor to a new line. Hence, subsequent printing instructions will print on the same line. https://www.inf.unibz.it/~calvanese/teaching/ip/lecture-notes/uni02/node4.html http://java-intellectual.blogspot.com/2011/10/what-is-difference-between-print-and.html
24th Sep 2018, 10:00 AM
deepak sharma
deepak sharma - avatar
+ 1
when you use println(); it adds a new line for the next print statement,but when you use print() the line will not change.
4th Oct 2018, 4:00 PM
Vivek Mishra
Vivek Mishra - avatar