Answers for "java get terminal input"

13

nodemon is not recognized

//You need to install nodemon as globally. Use this command
npm install -g nodemon
//Now you can use nodemon it will work
Posted by: Guest on June-03-2021
2

read input from terminal java

// create scanner that reads the terminal / user
Scanner scanner = new Scanner(System.in);

//Get next line of input from terminal
String nameSurname = scanner.nextLine();

//Get next symbol of input from terminal
String gender = scanner.next();

//Save input from terminal
int age = scanner.nextInt();
double height = scanner.nextDouble();

//remember try catch
Posted by: Guest on April-17-2021
6

java taking console input

String str = System.console().readLine();
Posted by: Guest on April-01-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language