answersLogoWhite

0


Best Answer

rectify the question first.. if it is prime then how it is possible to divisible by 3

Prime numbers that are divisible by 3 don't exist. It's a contradictio in terminis ;)

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How to display prime numbers in descending that can be divisible by 3?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why are prime numbers divisible?

Prime numbers are divisible because any numbers that are divisible are prime. If a number isn't divisible, it isn't prime. Prime numbers have to be divisible by at least one pair of numbers to be prime.


How do you draw a flow chart to display the prime numbers between 1 to 100?

In order to draw a flow chart to display the prime numbers between 1 and 100, the rules of prime numbers must be implemented. These are that the number is only divisible by itself and one.


What prime numbers are divisible by 250?

No prime numbers are divisible by 250. A prime number is only divisible by 1 and itself.


Are prime numbers divisible by 10 and or 2?

Prime numbers are only divisible by 1 and themselves. So, a prime number cannot be divisible by 10. The only prime number that is divisible by 2 is 2 itself; all other numbers divisible by 2 are not prime numbers.


What prime numbers are divisible by 100?

Prime numbers are by definition only divisible by 1 and itself.


Are all prime numbers divisible by 4?

No prime numbers are only divisible by one and by themselves.


Are all prime numbers divisible by 10?

In contrast, no prime numbers are divisible by 10. Any prime number is divisible only by itself and 1.


How many prime numbers divisible by three?

No prime numbers are divisible by 3. By definition a prime number isn't divisible by anything but itself and 1.


What prime numbers are divisible by 4?

There aren't any prime numbers divisible by 4. Prime numbers aren't divisible by anything except 1 and the number.


What are the three prime numbers divisible by 408?

Prime numbers are not divisible by any numbers other than themselves and 1.


Which prime number is divisible by 2 3 4 and 5?

Prime numbers are only divisible by 1 and itself... so no prime number can be divisible by the numbers you listed.


Consider prime numbers between 1 and 10000. Draw a flowchart to display the prime numbers.Write a pseudo code associated with the flowchart in a)?

A) Here's an example of a flowchart and pseudocode that could be used to display the prime numbers between 1 and 10000: Flowchart:
START Set up an array of numbers from 1 to 10000 Set an empty array to store the prime numbers Set i = 2, the first prime number For each number in the array, check if it is divisible by i If it is divisible by i, it is not a prime number and move to the next number in the array If it is not divisible by i, it is a prime number and add it to the prime numbers array Increase i by 1 and go back to step 4 Repeat steps 4 through 7 until i is greater than the square root of 10000 Display the prime numbers array END