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
Differentiate between a constructor and a destructor in c++.
Why was c++ created?
What are arithmetic operators?
Is it possible to get the source code back from binary file?
What is oop in c++?
What is the main function c++?
What are the advantages of c++? Explain
Can I uninstall microsoft c++ redistributable?
Explain how an exception handler is defined and invoked in a Program.
Explain the pure virtual functions?
What is a vector c++?
Write a program to interchange 2 variables without using the third one.
What is microsoft c++ redistributable 2013?
What is endl?
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.