Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3.  
  4. public class primePrinter extends primeGenerator {
  5.  
  6. public static void main(String[] args) {
  7.  
  8. Scanner user_input = new Scanner(System.in);
  9. String numberLength;
  10. System.out.print("Enter number to count primes to: ");
  11. numberLength = user_input.next();
  12.  
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement