Computer Science, asked by satyamkumarjha34, 11 months ago

What is difference between next and nextline in jva

Answers

Answered by Ayush26501
6

Answer:

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).

Explanation:

Similar questions