我刚刚在Windows 10上安装了mingw32-base和mingw32-gcc-g ++的MinGW,并在系统路径中添加了“C:\ MinGW \ bin \”,我可以从命令提示符运行gcc和g ++,但是当我尝试使用g++ helloworld.cpp -o helloworld.exe
编译.cpp文件时,它会创建helloworld.exe,并在大约2秒后删除helloworld.exe。如果我在删除它之前尝试从提示符运行helloworld.exe
,它会让我“访问被拒绝。”
这是helloworld.cpp:
#include <iostream>
int main()
{
std::cout << "Hello World!";
return 0;
}
但即使我使用其他代码也是如此。