我正在尝试运行一个简单的程序并使用eclipse dubgger,但我不断收到以下错误: 没有可用于“std :: ostream :: operator<< 代码:
int main()
{
int num1(0);
int num2 = 0;
std::cout << "Please enter the first number:" << std::endl ;
std::cin >> num1;
std::cout << "Please enter the second number:" << std::endl ;
std::cin >> num2;
}
通过尝试调试一个简单的'hello world'ptogram,我收到了以下错误:
在“C:\ Users \ DB \ workspace \ Temp \ src \ Temp.cpp”中找不到源文件
找到文件或编辑源查找路径以包含其位置。
我正在使用MinGW gcc appiler。我附加了打印屏幕,用于调试器的配置。