对二进制'operator<<'的'int'和'<未解决的重载函数类型>'类型的操作数无效

 ###### 问题遇到的现象和发生背景

 ###### 问题相关代码,请勿粘贴截图
错误提示

error: invalid operands of typesintand ‘<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;

```

 ###### 运行结果及报错内容

 ###### 我的解答思路和尝试过的方法

 ###### 我想要达到的结果

。。。你的变量名cout和标准输出流cout重名了,典型的名字污染,你要是不用using namespace std就不会出现这个错误了
补习补习英语吧,个数的英语是count