write the prime no program in c++?

Answer Posted / prits

#include <iostream>
using namespace std;

void main()
{
int num;
int flag = 0;
cout<<"enter a number"<<endl;
cin>>num;
for(int i=2;i<num;i++)
{
if((num%i) == 0)
{
flag = 1;
break;
}
}
if (flag == 1)
cout<<"Not Prime"<<endl;
else
cout<<"Prime"<<endl;

}

Is This Answer Correct ?    32 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between a constructor and a destructor in c++.

766


Why was c++ created?

770


What are arithmetic operators?

740


Is it possible to get the source code back from binary file?

970


What is oop in c++?

814


What is the main function c++?

812


What are the advantages of c++? Explain

784


Can I uninstall microsoft c++ redistributable?

776


Explain how an exception handler is defined and invoked in a Program.

830


Explain the pure virtual functions?

831


What is a vector c++?

813


Write a program to interchange 2 variables without using the third one.

789


What is microsoft c++ redistributable 2013?

773


What is endl?

867


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

2447