About Java Lesson _ Basic Concepts: Primitive Operator, second question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

About Java Lesson _ Basic Concepts: Primitive Operator, second question

Was "println(result)" used because so far we haven't learned any other way to produce output? While playing around with the code I found out that just "print(result)". Are these always interchangable. If not which would be preferable in most of the cases and why? The lines of code I'm referring to: int x = 2; int y = 4; int result = x+y; System.out.println(result);

14th Jul 2020, 5:55 PM
Nat
2 Answers
0
System.out.println(result); will print the output value for result and goes to next for next input.. But System.out.print(result) print result, continue in same line for next output... So depends on requirements, you have to use..
14th Jul 2020, 6:05 PM
Jayakrishna 🇮🇳
0
Hello Nat There exists also printf() https://www.baeldung.com/java-printstream-printf
14th Jul 2020, 6:23 PM
Denise Roßberg
Denise Roßberg - avatar