DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   C (http://www.daniweb.com/forums/forum118.html)
-   -   how do u find prime numbers in an array (http://www.daniweb.com/forums/thread70347.html)

srinath33 Feb 18th, 2007 8:48 pm
how do u find prime numbers in an array
 
hlp please

Ancient Dragon Feb 18th, 2007 8:54 pm
Re: how do u find prime numbers in an array
 
if you search these threads you will find several threads on this topic.

nadith_cs Feb 18th, 2007 8:58 pm
Re: how do u find prime numbers in an array
 
first write a program to catch all the prime numbers in to an array in a given or a chosen range....
and compare the elements of prime numbers with the each element of the array u want...
if one of ur array element is equal to a element of prime number array,,that means it's a prime number....

e.g.

A[4]={1,5,3,4,17}; //range is 1 to 20

primArray[10]={2,3,5,7,11,13,17,19}
now compare array 'A' with the each element of 'primArray'.

if u find hard to write a program to catch prime numbers of a given range to an array email me....

srinath33 Feb 18th, 2007 9:05 pm
Re: how do u find prime numbers in an array
 
dude we need2 accept the numbers in an array.... so among those nos wi nid 2 find

John A Feb 18th, 2007 9:09 pm
Re: how do u find prime numbers in an array
 
Speak English please. And once you do that, you can show some effort.
http://www.daniweb.com/techtalkforum...cement8-2.html
http://www.catb.org/~esr/faqs/smart-questions.html

Lazaro Claiborn Feb 20th, 2007 9:01 pm
Re: how do u find prime numbers in an array
 
Quote:

Originally Posted by srinath33 (Post 316954)
hlp please

A prime number is a number that can only be evenly divided by itself and 1. Let number x equal a given element in the array. Now you can for loop from 2 to x-1 and use the modulus operator. If the resulting value is equal to 0 then it is certainly not a prime.

Good luck, LamaBot

jwenting Feb 20th, 2007 11:38 pm
Re: how do u find prime numbers in an array
 
I don't know how "u" does it. I do know how I'd do it.

goutham_see Feb 21st, 2007 12:25 am
Re: how do u find prime numbers in an array
 
/* This program is for checking a single integer*/
#include<stdio.h>
#include<stdlib.h>
main()
{
 int a,i;
 printf("\nEnter a positive integer\n");
 scanf("%d",&a);
 if(a<=0)
 {
  printf("\nInvalid input\n");
  exit(1);
 }
 for(i=2;i<=a-1;i++)
  if(a%i==0)break;
 if(i==a)printf("\n%d is prime\n",a);
 else printf("\n%d is not a prime\n",a);
}


/* This is for elements in an array*/
#include<stdio.h>
#include<stdlib.h>
#define MAX 5
main()
{
 int a[MAX],i,m;
 printf("\nEnter elements into array\n");
 for(m=0;m<=MAX-1;m++)
 {
    scanf("%d",&a[m]);
    if(a[m]>0)
    {
          for(i=2;i<=a[m]-1;i++) if(a[m]%i==0)break;
          if(i==a[m])printf("\n%d is prime\n",a[m]);
          else printf("\n%d is not a prime\n",a[m]);
    }
    else printf("\n%d is not positive\n");
 }
}


All times are GMT -4. The time now is 3:27 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC