Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

( 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.
image text in transcribed

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

More Books

Students also viewed these Databases questions

Question

7. Where Do We Begin?

Answered: 1 week ago

Question

3. Are our bosses always right? If not, what should we do?

Answered: 1 week ago