Ramdan51-062

Keypad

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