Powered by Blogger.

Prime Number Program in C++



Prime Number Program in C++

It is very simple to write Prime Number Program in C++, you need basic concept of for loop and if else.

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int num,count=0;
cout<<"Enter any Number: ";
cin>>num;
for(int a=1;a<=num;a++)
{
if(number%a==0)
{
count++;
}
}
if(count==2)
{
cout<<"It is Prime Number"<<endl;
}
else
{
cout<<"It is not Prime Number "<<endl;
}
getch();
}

Output:

Enter any Number: 5
It is Prime Number



facebook
google-plus
twitter
pinterest

No comments :

Post a Comment

HTML Tutorial

images

About Sitesbay

This blog is related to Java Tutorial, C++ Tutorial, C Tutorial, Online Earning tips and more in very simple and easy way. Here i will try to give complete idea related to all new technology.

Java Tutorial

Java is Object oriented programming language, It is more secure and high performance language.

C++ Tutorial

C++ is also Object oriented programming language, It is more simple and easy to learn.

 
https://sitesbay.blogspot.com/?utm_medium=d2898efa59afcc0bc411921036e22b767ca37b09