すみません、e-Courseの宿題で困っています。ユーザーの入力数値が素数かどうかを判断し、その素数を言うか、入力が割り切れる数値を出すプログラムを書くように依頼されました。それを実現するには、どの種類の構文を使用すればよいですか?
例:「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();
}
}