farizmpr

Untitled

Oct 19th, 2017
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Keypad
  3. {
  4.     private Scanner input;
  5.    
  6.     public Keypad()
  7.     {
  8.         input=new Scanner(System.in);
  9.     }
  10.    
  11.     public int getInput()
  12.     {
  13.         return input.nextInt();
  14.     }
  15. }
Add Comment
Please, Sign In to add comment