Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 02-03-2005, 08:29 PM   #1 (permalink)
Buffering.........
 
merkerguitars's Avatar
 
Location: Wisconsin...
[Java] prime number generator

Ok so I have an assignment which is the following:

There are 25 primes between 2 and 100, and there are 1229 primes between 2 and 10,000. Write a program for which the user inputs an integer N > 2; the program will then display all prime numbers between 2 and N (inclusive), as well as the number of primes between 2 and N. (Your program must actually do the computation to determine if each number is prime, and keep a count of all primes found.)

The output of the program should specify which numbers are the primes between 2 and N, and which number is the number of primes between 2 and N. (In other words, use descriptive text with the output, and it would be a good idea to output the number of primes in a complete sentence!)

Use standard input and standard output for input and output. Your program must prompt the user for the input N. You may assume that the user will input an integer, but not necessarily an integer greater than 2. (In other words, your program must check that the integer input by the user is greater than 2.)

This is what I have so far, I know the format isn't perfect but hey it kinda works. I just can't figure out make a formula/equation for it to work (I switched proffs so i'm really confused)
Code:
 package a1;

/**
 * <p>Title: Assignment 1</p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: UWRF</p>
 * @author Eric Merker
 * @version 1.0
 */

import java.io.*;

public class Assignment1 {
  public Assignment1() {
  }
  // add throws IOException so an error doesn't occur
  public static void main(String[] args) throws IOException {

    String userInput;
    int N;
    BufferedReader br;

    br = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("What number would you like to enter? ");
    userInput = br.readLine();
    N = Integer.parseInt(userInput);

    //System.out.println("Well, my favorite number is " + userNum + "!");
    switch (N) {
      case 1: System.out.println("Not a valid prime number");
break; 
    }
    System.out.println("All the primes up to this number are");
//for (userNum = 0; userNum < 400; userNum++);

  }
}
__________________
Donate now! Ask me How!

Please use the search function it is your friend.

Look at my mustang please feel free to comment!

http://www.tfproject.org/tfp/showthread.php?t=26985
merkerguitars is offline  
Old 02-03-2005, 09:06 PM   #2 (permalink)
<Insert wise statement here>
 
MageB420666's Avatar
 
Location: Hell if I know
Try some nested for loops, run through each of the numbers between 2 and n, dividing each number from 2 to the current number using % division, have a local variable(in the outer loop) set to 0 increment it every time the remainder is 0, if the interior loop completes and the variable is zero, it's a prime number. I think you can figure out how to display each number.
__________________
Apathy: The best outlook this side of I don't give a damn.
MageB420666 is offline  
Old 02-03-2005, 10:04 PM   #3 (permalink)
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
To check if a number is prime, you only need to check the numbers between 2 and sqrt(n) - saves some math time. Still, it'll be a hell of a lot of processing for large values of n.

Just a thought, might help some.
Pragma is offline  
Old 02-04-2005, 03:26 AM   #4 (permalink)
Crazy
 
Location: San Diego, CA
First of all, N in an Integer, not an int. So you need to extract the value from it before you do anything else.
Code:
int n = N.intValue();
You shouldn't be using a switch statement on N to see if it's valid, as it can be 0 or a negative number, which your switch statement will not detect. Use an if statement.

Code:
if (n <= 1)
{
  System.out.println("Not a valid prime number");
}
You will want to add code in the if statement depending on what functionality you want. I can think of two possibilities:
1) Just quit the program (return statement)
2) Prompt for a new number. In this case, you'll want to replace the if with a while, and repeat the line that asks for a number.

The real question is - what are you currently learning in your class? Loops? Recursion? Arrays?

If that doesn't matter, then the easiest algorithm to understand would be to do the following. I will not give you code for this part, as this is the actual part of the assignment, but this should help you a bit:

Loop from 2 to the user inputted number (n).

Check the value modulus (% in Java) of n with every number between 2 and n-1. The modulus returns the remainder of dividing the two numbers, so if they divide evenly the answer is 0. For example, 10 % 2 = 0, 10 % 3 = 1, 10 % 4 = 2, 10 % 5 = 0, etc

If none of those values were 0, then you should display the value, and increment an ongoing counter of the number of primes. (THINK: How do you make sure that NONE of the values are 0? You'll need something to keep track of this)

Display the final count

Now, here are a couple of notes that might make the algorithm more efficient (these may not be necessary - as I said, I don't know what this program is intending to teach) PLEASE only implement these AFTER getting a working program. It's more important to have a functional program than a fast program.

If you hard-code 2, you can start your loop at 3 and increment by 2, since no even number is prime except for 2.

You really only need to check up to the square root of the max in your modulus loop

You only need to see if the number is divisible by any primes lower than it - if you store the primes in an array, vector, or similar structure, then you can simply check it against the primes you've already found. This also allows you to calculate all the primes first, and then display them however you want, in whatever order you want.

Those are all the simple algorithm improvements I can think of right now. You may be able to think of more.

Hope this helps.
__________________
"Don't believe everything you read on the internet. Except this. Well, including this, I suppose." -- Douglas Adams
Rangsk is offline  
Old 02-05-2005, 11:57 AM   #5 (permalink)
Buffering.........
 
merkerguitars's Avatar
 
Location: Wisconsin...
this is what I have so far.......but i do get an error "'else' without 'if' at line 41 (41:9)"

Code:
 package a1;

/**
 * <p>Title: Assignment 1</p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: UWRF</p>
 * @author Eric Merker
 * @version 1.0
 */

import java.io.*;

public class Assignment1 {
  public Assignment1() {
  }
  // add throws IOException so an error doesn't occur
  public static void main(String[] args) throws IOException {

    String userInput;
    int N;
    int factor;
    BufferedReader br;

    br = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("What number would you like to enter? ");
    userInput = br.readLine();
    N = Integer.parseInt(userInput);


boolean noFactorFound;
    for (N=2; N <= upperBound; N=++1);{
      factor = 2;
      noFactorFound = true;

      While(factor <= N / 2 && noFactorFound);
      {
        if (N % factor == 0);
        {
          noFactorFound = false;
        }
        else {
          factor++;

          if (no FactorFound) {
          }
        }
      }
    system.out.println ( factor );
 
  }}}
__________________
Donate now! Ask me How!

Please use the search function it is your friend.

Look at my mustang please feel free to comment!

http://www.tfproject.org/tfp/showthread.php?t=26985
merkerguitars is offline  
Old 02-05-2005, 03:02 PM   #6 (permalink)
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
You have a semicolon trailing at the end of your if statement.
Pragma is offline  
Old 02-06-2005, 06:04 PM   #7 (permalink)
Junkie
 
Here are some optimizations you should implement.

First always increment your counter by 2 (only check if odd numbers are prime, 2 is the only even prime number).

Second save a list of the primes you find and instead of checking if a number is prime by dividing by all numbers between 2 and N only try dividing other primes into it. There is no reason to try and divide non prime numbers into it, as they will already be checked via other primes.
Rekna is offline  
Old 02-08-2005, 04:31 AM   #8 (permalink)
Insane
 
Location: Rio Grande Valley, Texas
The easiest way to find primes (and one we use for our students) is the Eratosthenes Seive.

Information on it can be found here:
http://ccins.camosun.bc.ca/~jbritton/jberatosthenes.htm

A tip: use a binary array to store the numbers. The index of the array is the number you want to identify as prime/non-prime, and the binary value of array[index] is whether or not the index is prime.
__________________
"I can't understand why people are frightened of new ideas. I'm frightened of the old ones." -- John Cage (1912 - 1992)
strcrssd is offline  
Old 02-10-2005, 06:53 PM   #9 (permalink)
Upright
 
Location: Atlanta, GA
Here's some of the perl one I did to knock the rust off... I got a java version as well both implment the Eratosthenes Seive and stops at the sqrt... it works pretty darn quick...
<code>
#!/usr/bin/perl -w
my @prime_list = ();
my @sieve_list = ();
my $end = $ARGV[0];
my $stopping_point = sqrt ($end);
my $debug = 0;
if ($end < 2)
{
*print "Must enter a integer > 1";
*exit 1;
}
print "Finding all primes from 2 to $end \n";
print "\tand stopping the sieve at $stopping_point\n";
# build inital sieve list
for (my $i = 2; $i<=$end; $i++)
{
*push (@sieve_list,$i);
}

*

# ok now we should have the list built up we will loop
# let's prime the pump
my $prime = $sieve_list[0];
my $iterations = 0;
while ( $prime <= $stopping_point )
{
*$iterations += 1;
*# add the prime to the prime list
*push (@prime_list,$prime);
*# strike off the stuff that's not
*my @temp_sieve = ();
*foreach my $test (@sieve_list)
*{
**if ($test == $sieve_list[0])
**{
***next;
**}
**
**# if the number is devisible by the prime, drop it
**$mod = $test % $prime;
**if ($mod)
**{
***push (@temp_sieve,$test);
**}
*}
*@sieve_list = @temp_sieve;
*# get the next prime
*$prime = $sieve_list[0];
}
# add the rest
foreach $prime (@sieve_list)
{
*push (@prime_list,$prime);
}
print "Primes: \n\t";
my $lines = 0;
foreach $prime (@prime_list)
{
*print "$prime";
*if ($lines == 10)
*{
**print "\n\t";
**$lines = 0;
*}
*else
*{
**print "\t";
**$lines += 1;
*}
}
#print "\n";
#print "# of iterations is $iterations \n";
</code>

I will post the java one when I get a chance... they are both not that pretty but they are darned fast..
lanar is offline  
Old 02-12-2005, 08:32 AM   #10 (permalink)
Crazy
 
Here is my C code, you can probably get a good idea on how to implement it in java.... I used Sieve algorithm.

Code:
#include <stdio.h>
    
    /* 
     * This allows us to change the number of primes to search
     * without modifying any code
     * For the l337:
     *   use #define to define TRUE and FALSE
     */
    #define MAX 3000

    int main() {
        int i,j;
        char primes[MAX];
        
        /* Set every number as being a prime, for ease of programming */
        for (i = 0; i < MAX; i++) {
            primes[i] = 0; /* 0 = False remember? */
        }
        
        /* 
         * Traverse the array, starting from 2, since 0 and 1 
         * are non-prime
         */
         
         for(i = 2; i < MAX; i++) {
	     primes[i] = 1;
	     
	     for(j = 2; j < i; j++) {
	     	if((i%j) == 0){
		    primes[i] = 0;
                                    }
        }
}
        /*
         * Print out the list of primes
         */
        /* the \n causes a newline to be printed */
        printf("The list of prime numbers from 1 to 3000 is as follows:\n");
        
        /* Traverse array and print out each number, followed by a
         * newline.
         * Accomplish this using printf("%d\n",i);
         * The %d tells printf that there is going to be a decimal
         * number after the comma.
         *
         * Remember that if primes[i] == TRUE, you must print out i
         * since i corresponds to the prime number, primes[i] defines
         * whether its a prime or not.
         */
        
        for(i = 1; i < MAX; i++){
		
		if(primes[i] == 1){
			printf("%d\n",i);
        	}
	}

        return 0;
        
    }
FloydianOne is offline  
 

Tags
generator, java, number, prime


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



All times are GMT -8. The time now is 07:29 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360