出现了expected primary-expression before ✀int&#39 c++问题。

2024-10-30 10:46:39
推荐回答(2个)
回答1:

int HS(m); 去掉

如果是函数调用应该是HS(m);
如果是函数声明应该在main函数上面 声明为 int HS(string m);

回答2:

HS是啥。。我暂时去掉,这样子跑没错:
#include
#include

using namespace std;
int main()
{
string m;
cout<<"输入:"< cin>>m;

system("pause");
return 0;
}