Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- * Class untuk membaca input dari user.
- *
- * @author naufalfajar
- * @version 1.0
- */
- public class InputReader
- {
- private Scanner scan;
- /**
- * Declare scan function
- *
- */
- public InputReader(){
- scan = new Scanner(System.in);
- }
- /**
- * Scan input string
- *
- */
- public String getInput(){
- System.out.print("> ");
- String input = scan.nextLine();
- return input;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment