Skip to main content

Program to find prime numbers between 1 and 50

#include<stdio.h>
#include<conio.h>

void main()
{
   int i, n=1, count;

   clrscr();
   printf("\nPrime numbers between 1 and 50\n");

   while(n<=50)
   {
      count=0;
      for (i=2; i<=n/2; i++)
      {
if(n%i==0)
{
    count++;
    break;
}
      }

      if (count==0)
      {
printf("\n%d",n);
      }
      n++;
   }
   getch();
}

OUTPUT

Prime numbers between 1 and 50

1
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47

Comments

Popular posts from this blog

Four Square pattern using Python program

Four Square Pattern import turtle turObj = turtle.Turtle() turObj.getscreen().bgcolor("#555555") turObj.speed(5000) def star(turtle, size):     if size <=5:         return     else:         for i in range(4):             turObj.color("#FFFFFF")             turtle.forward(size)             star(turtle,size/2)             turtle.left(270) star(turObj,100)        turtle.done() Output:

Star Design using Python program

Star Design import turtle turObj = turtle.Turtle() turObj.getscreen().bgcolor("#555555") turObj.speed(10) def star(turtle, size):     if size <=10:         return     else:         for i in range(30):             turObj.color("#FEACFF")             turObj.forward(i * 15)             turObj.right(144)            star(turObj,100)        turtle.done() Output: