Advertisement
rmword

Untitled

Oct 23rd, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement