Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that prints all prime numbers in the range [ LB,UB ]. You may assume (that is, there is no requirement to validate)

Write a program that prints all prime numbers in the range [ LB,UB ]. You may assume (that is, there is no requirement to validate) that the pre-condition(2 LB UB) is true. Note Based on https://en.wikipedia.org/wiki/Primality_test on January 15, 2018 The simplest primality test is trial division: Given a number x, check whether any integer i [ 2,x ] evenly divides x (that is, whether the division x/i leaves a remainder of 0). By definition, when x is divisible by any of the i values, x is composite, otherwise x is prime. Pseudocode PROGRAM INPUT "LB? ",LB INPUT "UB? ",UB FOR x := LB TO UB BY 1 IF ( IsPrime(x) ) THEN PRINT x,ENDL END END STOP END //--------------------------------------------------------------- FUNCTION IsPrime(IN x: int) RETURNS boolean //--------------------------------------------------------------- r: boolean r := ___ FOR i := 2 TO SquareRootOf(x) BY 1 r := r AND (x MOD i ___ 0) // *Note* (x MOD i = 0) iff i evenly divides x! END RETURN( r ) END.

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

Database And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 2 Lncs 8056

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013th Edition

3642401724, 978-3642401725

More Books

Students also viewed these Databases questions

Question

Show that P(A|A) = 1 when P(A) 0.

Answered: 1 week ago

Question

d. Present your teams conclusions to the class.

Answered: 1 week ago