Answers for "next and nextline difference in java"

0

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 "next and nextline difference in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language