ubuntu中运行cpp文件
时间: 2024-09-27 20:13:53 浏览: 63
在Ubuntu系统中,要运行C++文件,你需要先确保已经安装了必要的工具,如gcc(GNU Compiler Collection)或g++(C++版本的gcc)。以下是步骤:
1. **安装gcc/g++**(如果尚未安装):
打开终端,输入命令并按回车键:
```sh
sudo apt-get update
sudo apt-get install g++
```
2. **编写C++代码**:创建一个新的文本文件,例如`hello.cpp`,然后编写C++程序。例如,一个简单的"Hello, World!"程序:
```cpp
#include <iostream>
int main() {
std::cout << "Hello, World! This is a C++ program on Ubuntu." << std::endl;
return 0;
}
```
3. **编译源文件**:
使用`g++`编译器编译文件,命令如下:
```sh
g++ hello.cpp -o hello
```
这里 `-o hello` 表示生成可执行文件名为`hello`。
4. **运行程序**:
现在你可以通过以下命令运行刚刚编译的程序:
```sh
./hello
```
阅读全文