Advertisements
Advertisements
Questions
Write a C++ program to accept an integer number and test whether it is prime or not.
Write C++ program to read any integer and then check whether it’s prime or not prime no.
Code Writing
Advertisements
Solution
C++ program to test whether the inputted number is prime or not.
#include <iostream.h>
void main()
{
int prime, C = 0;
cout << "Enter the number";
cin >> prime;
for (int i = 2; i < prime; i++)
{
if (prime % i == 0)
C = 1;
}
if (C == 0)
cout << "The number" << prime << "is prime number";
else
cout << "The number" << prime << "is not a prime number";
}shaalaa.com
Is there an error in this question or solution?
