我刚刚在我的新PC上下载了Code :: Blocks并编写了我的hello world。 我的代码是:
#include <iostream>
using namespace std;
int main()
{
cout << "hello world!";
return 0;
}
我的文字没有突出显示,当我尝试构建并运行程序时,它出现在终端中:
sh: 1: /directory/I/saved/in/helloworld: Permission denied
process returned 126 (0x7E) execution time : 0.002 s
Press Enter to continue.
我的编译器是gcc,我在CodeLite中遇到了同样的问题。我该如何解决?
答案 0 :(得分:0)
总结一下: 我所要做的就是在我的文件中添加一个扩展名(在我的情况下为#34; .cpp&#34;),因此它是可执行的。