Answers for "java string next vs nextline"

9

java string next line

// its rn
String a = "Hello, "
String b = "there!"
System.out.println(a+b);//returns Hello, there
System.out.println(a+"rn"+b);//returns Hello, 
//there! //it will be on the next line!
Posted by: Guest on July-08-2020
2

what is the difference between sc.nextLine() and sc.next() in java

Their differences are...

next() can read the input only till the space. It can't read two words separated by space. Also, next() places the cursor in the same line after reading the input.

nextLine() reads input including space between the words (that is, it reads till the end of line n). Once the input is read, nextLine() positions the cursor in the next line.
Posted by: Guest on April-01-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language