#include <stdio.h>
int main()
{
int low, high, i, flag;
printf("Enter two numbers(intervals): ");
scanf("%d %d", &low, &high);
printf("Prime numbers between %d and %d are: ", low, high);
while (low < high)
{
flag = 0;
for(i = 2; i <= low/2; ++i)
{
if(low % i == 0)
{
flag = 1;
break;
}
}
if (flag == 0)
printf("%d ", low);
++low;
}
return 0;
}
This blog contains PHP related article.this article is very useful because here posted article is project related problem and issues.
Monday, April 24, 2017
Display Prime Numbers Between two Intervals in C language.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment