Go Back   Java Programming Forums > Java Standard Edition Programming Help > What's Wrong With My Code?


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 27-10-2009, 10:31 PM
Junior Member
 

Join Date: Sep 2009
Posts: 11
Thanks: 5
Thanked 0 Times in 0 Posts
TommyFiz is on a distinguished road
Default Calculate primes help

I'm getting the following error. The idea is to have the user input a number, and then print out all the primes less than the number.

Java Code
Enter a value: 
9
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
	at Primes.main(Primes.java:18)
I've tried several numbers, most numbers don't give me the error, but 7, 9, 11 are a few that do. The ones that don't give me the error, what is wrong with my print statement that makes it so it never prints?

Here is my code

Java Code
import java.util.*;
public class Primes {
	public static void main(String[] args){
		Scanner stdin = new Scanner(System.in);
		int x = 0;
		boolean isPrime = true;
		int ARRAY = 0;
		int primes[] = new int[ARRAY];
		
		System.out.println("Welcome to Prime Calculator!");
		System.out.println("Enter a value: ");
		x = stdin.nextInt();
		
		for(int i = 2; i < (x/2) && isPrime == true; i++){
			if (x % i == 0){
				isPrime = false;
			} else {
				primes[ARRAY] = i;
				ARRAY++;
			}
		}
		for(int i = 0; i < ARRAY; i++){
			System.out.println(primes[0]);
		}
	}
}



Reply With Quote Share this thread on Facebook
Sponsored Links
Java Training from DevelopIntelligence
  #2 (permalink)  
Old 28-10-2009, 12:56 AM
helloworld922's Avatar
Super Moderator
 

Join Date: Jun 2009
Posts: 1,342
Thanks: 5
Thanked 284 Times in 256 Posts
helloworld922 will become famous soon enoughhelloworld922 will become famous soon enoughhelloworld922 will become famous soon enough
Default Re: Calculate primes help

I'm not sure what algorithm you have there, but the most efficient method to do this is by the Sieve of Eratosthenes.

You're getting the ArrayIndexOutOfBounds exception because you initialized primes[] to size 0, instead of to size x
Java Code
System.out.println("Welcome to Prime Calculator!");
System.out.println("Enter a value: ");
x = stdin.nextInt();
primes = new int[x];
__________________
ASCII a question .. Get an ANSI

Please surround your code with [highlight=Java]code goes here[/highlight].
Reply With Quote
  #3 (permalink)  
Old 28-10-2009, 02:57 AM
Junior Member
 

Join Date: Sep 2009
Posts: 11
Thanks: 5
Thanked 0 Times in 0 Posts
TommyFiz is on a distinguished road
Default Re: Calculate primes help

I read a lot about that, and I feel like since we haven't learned about it, that's not what is expected in the program. My algorithm may not be the most efficient, but it seems like it should make sense? If the remainder of something divided by 2 = 0 then its not prime, if it is, try 3, if that is 0, then it's not prime, if it is, try 4, and so on..

Substituting x into the array got rid of the error message, but now onlys prints the number 2--sometimes once, sometimes twice, sometimes three times
Reply With Quote
  #4 (permalink)  
Old 28-10-2009, 03:41 AM
helloworld922's Avatar
Super Moderator
 

Join Date: Jun 2009
Posts: 1,342
Thanks: 5
Thanked 284 Times in 256 Posts
helloworld922 will become famous soon enoughhelloworld922 will become famous soon enoughhelloworld922 will become famous soon enough
Default Re: Calculate primes help

That's part of the fun of computer science: learning about new (well, in this case really old) algorithms that perform a given task.

The reason why you're algorithm isn't working is because you're checking the primality of x. If you want to go about it that way, I'd recommend writing a helper function that will check to see if a number is prime, then everytime you find a prime number, print it out.

Java Code
for (int i = 2; i < x; i++)
{
     if(isPrime(i))
     {
          System.out.println(i + " is prime");
     }
}
A simple primality checker:

Java Code
for every integer i from 2 to the number:
if the number is divisible by i, return not prime
end
return true
There are several optimizations that you can make, the biggest being that you only have to check numbers up to the square root of the number. The second is only to check to see if the number is divisible by 2, then return false. Then, only check to see if your number is divisible by odd numbers from 3 to sqrt(number)
__________________
ASCII a question .. Get an ANSI

Please surround your code with [highlight=Java]code goes here[/highlight].
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple java program to calculate wall covering of a room parvez07 What's Wrong With My Code? 3 22-08-2009 08:31 PM


100 most searched terms
Search Cloud
2d arraylist java actionlistener actionlistener in java actionlistener java addactionlistener addactionlistener in java addactionlistener java applications of oops could not create java virtual machine xp double format java double to int java double to integer in java double to integer java eclipse shortcut keys eclipse tutorial for beginners exception in thread "awt-eventqueue-0" java.lang.outofmemoryerror: java heap space exception in thread "main" java.lang.nullpointerexception exception in thread "main" java.lang.outofmemoryerror: java heap space format double java get mouse position java http://www.javaprogrammingforums.com/object-oriented-programming/3713-limiting-decimal-places-double.html java 2d arraylist java actionlistener java addactionlistener java double format java double to int java double to integer java format double java forum java forums java get mouse position java list to map java mouse position java programmers forum java programming forum java programming forums java programming help java project ideas java sendkeys java two dimensional arraylist java.lang.classformaterror: truncated class file java.lang.outofmemoryerror: java heap space java.util.arraylist jbutton actionlistener jtextarea font jtextarea font color jtextfield font size jxl.read.biff.biffexception: unable to recognize ole stream two dimensional arraylist java writing ipod apps

All times are GMT. The time now is 12:06 AM.
Powered by vBulletin® Copyright ©2000-2009, Jelsoft Enterprises Ltd.