Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package com.mrchriswindsor;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7. public static void main(String[] args) {
  8.  
  9. Generator gen = new Generator();
  10.  
  11. Scanner scanner = new Scanner(System.in);
  12.  
  13. System.out.println("Enter Preferred Length Of Password: ");
  14.  
  15. long pswdlength = scanner.nextLong();
  16.  
  17. gen.generatePswd(pswdlength);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement