answersLogoWhite

0

What do you mean by prime a loop?

Updated: 11/4/2022
User Avatar

Wiki User

15y ago

Best Answer

prime a loop is that how mach time it executed either max time or minimum time

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you mean by prime a loop?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a program to print numbers to 50 except prime?

First, create a for loop from a,1 to 50. Inside of that create another for loop b,2 to a-1. If a/b=int(a/b) then you know it is not prime


What does to loop a vine mean?

Vines play automatically, which means that they loop.


What does it mean to be in the loop?

If somebody was to be out of the loop, they would be lacking critical information or popular knowledge. Now if somebody was IN the loop, this would mean you are up to date on the latest topics of your "loop".


How do you write a program to twin print prime numbers from 1 to 50 in PHP?

I suggest you write an outer loop, that loops through all the numbers from 1 to 50. Call the variable that controls the loop something like "number".Then, initially assume the number is a prime (with a variable such as "isprime"); and write another loop that compares whether the number is divisible by any number from 2 to number-1. Call the controlling variable "factor". If number is divisible by factor, then it is not a prime, and you can exit the loop. At the end of the inner loop, if the variable "isprime" is still true, then you print the number.


How do you print non-prime numbers in java?

Loop through some numbers - for example, 2 through 100 - and check each one whether it is a prime number (write a second loop to test whether it is divisible by any number between 2 and the number minus 1). If, in this second loop, you find a factor that is greater than 1 and less than the number, it is not a prime, and you can print it out.


What does loop the loop mean?

When your tying your shoe you loop the loop or some kind of dance. To 'loop the loop' in an aeronautical term. It is a maneuver creating a vertical circle in the sky and was first 'invented' by the pilot Lincoln Beachey prior to 1915


How do you make pseudocode of generating prime number lay in the range of 0to100?

lowerrange=1 upperrange=100 'seed the prime list to simplify program CurrentPrimes={2} CurrentCount=LowerRange begin loop while CurrentCount is Less than upperrange if currentcount is equal to 1 or 0 'ignore these numbers because they are not relevant when working with primes continue counting 'now check for even divisibility from within our current prime set begin for loop for each Prime in CurrentPrimes if currentcount divided by CurrentPrimes has no remainder 'ignore the number as it is not prime continue counting end for loop 'add current count to prime set CurrentPrimes+=CurrentCount Increment CurrentCount end while loop


What do you mean by finite and infinite loop explain?

what do you mean by looping?


What does lazo mean in spanish?

bond, loop


What is nesting loop?

Nested loop, you mean; one loop in the other loop, eg: for (i=0; i<10; ++i) { for (j=0; j<i; ++j) { printf ("i=%d, j=%d\n", i, j); } }


What do it mean tb1 mean an in knitting?

I think you mean tbl (L instead of 1), which is to knit through the back loop. (Regular knit stitch is through the front loop).


Write a java program to display the number is prime or not?

Simply use a for loop (i) that runs from 2 to N-1. Checking if N % i 0 then its a prime number.