Question: ( a ) The lab is to COUNT the prime numbers less than 1 0 0 0 0 . Do NOT list the prime numbers.

(a) The lab is to COUNT the prime numbers less than 10000. Do NOT list the prime numbers.
(b) A pair prime is two prime numbers whose difference is 2. For e.g.3,5;11,13;17,19; etc. We can use IsPrime function to count how many
pair primes are there in a range from 2 to 100 for example.
Create a function pairPrime, that takes one argument. pairPrime should return the number of pair primes between 2 and the argument
passed. Use the pairPrime function to count the pair primes between 2 and 1000. Make use of the IsPrime function to solve this task. (This
feature is worth 8 points).
Use the compile/run button to test tour program. Include the output displayed.
It will be similar to:
command>javac Exercise06_10.java
Compiled successful
command>java Exercise06_10
The number of prime number 10000 is ....
Pair Primes is: ....
where the ... are the values produced by your program.
 (a) The lab is to COUNT the prime numbers less than

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!