java take input as object code example
Example 1: java scanner
import java.util.Scanner;
// import scanner
Scanner myScanner = new Scanner(System.in); // Make scanner obj
String inputString = myScanner.nextLine(); // Take whole line
boolean inputBoolean = myScanner.nextBoolean(); //Boolean input
long inputLong = myScanner.nextLong(); //Interger,long ... input
Example 2: how to input in java
import java.util.Scanner;
...
Scanner console = new Scanner(System.in);
int num = console.nextInt();
console.nextLine() // to take in the enter after the nextInt()
String str = console.nextLine();