In Java, Write a program that prompts the user for a positiveinteger and then prints out all prime numbers up to and includingthat integer.
For example: if the user enters 20, the program shouldprint.
2
3
5
7
11
13
17
19
Recall that if a number is a prime number it is not divisible byany number except 1 and itself. Use a class PrimeGenerator withmethods nextPrime and isPrime. Supply a class PrimePrinter whosemain method reads a user input from the command line using theScanner and constructs a PrimeGenerator object and prints theprimes.
Expert Answer
An answer will be send to you shortly. . . . .