Findryan

FP_Keypad_VM

Dec 25th, 2016
226
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.  
  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.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment