抱歉,我的电子课程作业有问题。我被要求编写一个程序来确定用户输入的数字是否是素数,然后说出它的素数,或者给出输入可被整除的数字。我应该使用哪种语法来实现它?
例如:“6 可与 6;3;2;1 整除”这是我目前的代码:
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int P,count=0;
cout<<"Enter a number:\n"; /*Asks for user input*/
cin>>P; /* User input P*/
for(int a=1;a<=P;a++)
{
if(P%a==0)
{
count++;
}
if(count==2)
{
cout<<"Prime number.\n"; /* Provided option when the number is prime number*/
}
else
{
cout<<" Not prime number \n"; /* This is where I am supposed to provide the numbers input is divisible with*/
}
getch();
}
}