###### 问题遇到的现象和发生背景
###### 问题相关代码,请勿粘贴截图
错误提示
error: invalid operands of types ‘int’ and ‘<unresolved overloaded function type>’ to binary ‘operator<<’ cout<<m_cout<<endl;
但是改为printf就对了
```c++
int cout=0; //个数
int start=0; //起始位置
int m_cout=0; //最大
for(int i=2;i<=sqrt(n);i++)
{
cout=0;
int t=n;
int j=i;
while(t%j==0)
{
t=t/j;
j++;
cout++;
}
if(cout>m_cout)
{
start=i;
m_cout=cout;
}
}
cout<<m_cout<<endl;
```
###### 运行结果及报错内容
###### 我的解答思路和尝试过的方法
###### 我想要达到的结果