我正在尝试在 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;
}
代码卡在“现在我们要分解的数字是”产品。它计算产品,但没有进一步进展