import java.util.Stack;
public class Primes{
public static void main(String[]args){
Stack<Integer> stack = new Stack<Integer>();
stack.push(null);
//number of primes to display
final int NUMBER_OF_PRIMES = 50;
//number of primes to display per line
final int NUMBER_OF_PRIMES_PER_LINE = 10;
//count number of primes
int count = 0;
int number = 2;
System.out.println("The first 50 primes are \n");
while(count < NUMBER_OF_PRIMES){
boolean isPrime = true;
for(int divisor = 2; divisor <= number/2; divisor++){
if(number % divisor == 0){
isPrime = false;
break;
}
}
if(isPrime){
count++;
if(count % NUMBER_OF_PRIMES_PER_LINE ==0){
System.out.println(number);
}
else
System.out.print(number + " ");
}
number++;
}
}
}
|
|
|||||||||||
|
Note : Stack is an old class that should not be used anymore. You should prefer ArrayList. |
|||||||||
|
|
Because it's a homework problem I won't give code, but here's the process, picking up from somewhere within your code.
|
|||
|
|
|
First, have a look at Finding prime numbers with the Sieve of Eratosthenes (Originally: Is there a better way to prepare this array?) for a discussion of better ways of finding prime numbers. Then, use the stack to reverse the order, based on the "last in, first out" property. |
|||
|
|
|
One interesting property of a stack is that it can be used to reverse order. This is because the first item to be pushed onto it is the last off. Imagine if I push the letters of the word "pan" onto a stack, one by one. I first push "p", then "a", then "n". Now, since "n" was the last letter pushed, it is the first one to be popped off the stack. So, when I remove the letters I get "n" followed by "a" followed by "p" - "nap". In such a manner, a stack can be used to reverse a word by considering it as a list of characters. The same is true for a list of prime numbers. If you have a list of the first So, what I'd do is each time you detect a prime number, push it onto your stack until there are It might also be worth spinning off your |
|||
|
|