Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

[Java]Write a class called Primes. The class should have the following: a. (1 point) A constructor. It is passed 2 parameters x and y, both

[Java]Write a class called Primes. The class should have the following: a. (1 point) A constructor. It is passed 2 parameters x and y, both of which are integers. You should write the class so that it can return a sequence of prime numbers between x and y (inclusive). For example, the prime numbers between 10 and 23 are 11, 13, 17, 19, and 23. b. (1 point) An isPrime method. It is passed a parameter p, and returns true if p is a prime number or false otherwise. c. (2 points) The class should implement the Iterable interface. This means that the Primes class should have a method called iterator, which returns an object of type Iterator. I have already written the iterator method; you must write hasNext and next for the Iterator object returned by the iterator method. Here is an example of code which uses the Primes class. public class UsePrimes { public static void main(String[] args) { int x=10, y=100; // x and y could be any integers as long as x<=y Primes p = new Primes(x,y); for (Integer i : p) System.out.print(i + " "); System.out.println(); } }

Here is the output that should be produced: 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning C# 2005 Databases

Authors: Karli Watson

1st Edition

0470044063, 978-0470044063

More Books

Students also viewed these Databases questions

Question

why we face Listening Challenges?

Answered: 1 week ago

Question

=+ c. a company president deciding whether to open a new factory

Answered: 1 week ago