Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Initializing my long array with prime numbers

 
Greenhorn
Posts: 25
1
Android
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator

    Hi, I'm having a hard time figuring out how to initialize my array with prime numbers using the method I created. I keep getting this error: "incompatible types: possible lossy conversion from long to int" for the line
primes[number] = number;
How do I fix this? Here is what I wrote:

 
Sheriff
Posts: 9012
655
Mac OS X Spring VI Editor BSD Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Welcome to the Ranch.

You probably know that array indices start counting from zero. Looking to your code, you start filling an array from position 2 (at best), which is the 3rd element in an array - probably it isn't what you want.

You correctly identified that you need a method which defines if number is a prime one. Is that method correct? Have you tested, verified that?

Going back to the loop within the main method, in order to fill in an array fully, you need to iterate over each its element position, that means starting from index 0 each time increasing it by 1, until condition 'index < primes.length' fails.
 
author
Posts: 23959
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Yeah. Let's stay with the original topic.

Henry
 
    Bookmark Topic Watch Topic
  • New Topic