0 votes
in JAVA by
How to read a string in java?

1 Answer

0 votes
by

How to read a string in java?

Scanner sc= new Scanner(System.in); //System.in is a standard input stream.

System.out.print(""Enter a string: "");

String str= sc.nextLine(); //reads string.

🔗Source: stackoverflow.com

🔗Source: Java Interview Questions and Answers

...