Advertisement
nawamkihafahd

Untitled

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