read from terminal in java code example
Example: 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