Advertisement
zollav

Keypad

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