electrofriends.com  

...bringing innovative minds together       | HOME | ABOUT US | ARTICLES | SOURCE CODES | PROJECTS | EBOOKS |  FEEDBACK |  

PROGRAM FOR Prime numbers

The program is to find all the prime numbers falls inside the user defined range. A prime number is a one, whose divisors are 1 and the number itself.

Logic: This is advanced version of the previous program. Here, user need to enter two numbers as the lower and upper limits for the iteration loop to find the prime number in between. The outer for loop traces the iteration till the limit, wherein each of iteration inner for loop checks the present number is prime or not, with the prime number's logic. If it is, it prints out the present number.

In this program, both the lower limit and the upper limit are variables, and so is flexible. These three programs show, how we can upgrade the logic to make the code flexible one.

The similar growth can be seen in the case of finding the perfect numbers.

 

 


Program to find the prime numbers between a given range

#include<stdio.h>
void main()
{
     int i, prime, lim_up, lim_low, n;
     clrscr();
     printf("\n\n\t ENTER THE LOWER LIMIT...: ");
     scanf("%d", &lim_low);
     printf("\n\n\t ENTER THE UPPER LIMIT...: ");
     scanf("%d", &lim_up);
     printf("\n\n\t PRIME NUMBERS ARE...: ");
     for(n=lim_low+1; n<lim_up; n++)
     {
           prime = 1;
           for(i=2; i<n; i++)
           if(n%i == 0)
          {
                prime = 0;
                break;
           }
           if(prime)
                printf("\n\n\t\t\t%d", n);
     }
     getch();
}

Download exe and source code here.

Related source codes :
 

      Program to find whether a number is prime or not.

      Program to find the prime numbers below a given number.

        Select program from the list

 

 

 | HOME | ABOUT US | ARTICLES |  SOURCE CODES | PROJECTS |  SITEMAP |  EBOOKS | FEEDBACK |   



  Copyrights © 2005-2007 electrofriends.com, All rights reserved. webmaster@electrofriends.com