The selection cannot be launched, and there are no recent launches.
在此窗口的末尾有一条关于PATH的错误消息。请看一下: MAKE PATH 我试图运行的程序:
#include <iostream>
int main ()
cout<<"Hello World!";
return 0;
}
当我点击&#39;播放&#39;按钮/运行命令,它会一直显示这个令人作呕的令人讨厌的错误消息。
可能是什么解决方案?
我检查了另一篇文章,他们声称它的主要问题是&#39; main()&#39; 但我的代码并没有遗漏它。
现在完整代码如下所示:
#include <iostream>
using namespace std;
int main ()
cout << "Hello World!";
return 0;
}