在 Linux 上运行 C++ 程序,你需要先确保已经安装了 g++ 编译器
hello_world.cpp
,并编写以下代码:#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
保存文件并关闭编辑器。
打开终端(Terminal),然后使用 cd
命令导航到包含 hello_world.cpp
文件的目录。例如:
cd /path/to/your/directory
g++ hello_world.cpp -o hello_world
这将生成一个名为 hello_world
的可执行文件(在 Windows 上为 hello_world.exe
)。
./hello_world
注意:在运行程序之前,请确保你的系统已经安装了 g++ 编译器。如果尚未安装,可以使用以下命令安装:
sudo apt-get update
sudo apt-get install g++ build-essential
sudo dnf install gcc-c++ make
sudo yum install gcc-c++ make