Linux マシンで C++ の単純なコードをコンパイルして実行しようとしています。しかし、プログラムはコードの途中でスタックします。理由がわかりません。
ここにコードがあります
#include <iostream>
using namespace std;
int n;
int product =1;
int counter =0;
int p;
int main()
{
//return 1;
cout << "How many numbers?" << endl;
cin >> n ;
cout << "Input the numbers " << endl;
for(int i=0;i<n;i++)
{
cin >> p;
product = product*p;
int p = 1;
}
cout << "Now our number to be factorised is " << product << endl;
cin >> p;
for(int i=1;i=product;i++)
{
if(product%i==0)
counter++;
}
cout << "the number of factors is " << counter << endl;
return 0;
}
コードは「現在、因数分解される数は」積でスタックします。積を計算するが、それ以上進まない