vscode 运行c++
时间: 2024-06-18 14:04:13 浏览: 128
使用VScode和mingW配置C++/C环境
5星 · 资源好评率100%
在 VS Code 中运行 C++ 程序需要先安装 C++ 开发环境。这里我们以 Windows 操作系统为例,介绍如何在 VS Code 中运行 C++ 程序。
1. 安装 MinGW-w64
MinGW-w64 是一个开源的 Windows 平台 C/C++ 开发环境,可以在 Windows 上编译出可在 Windows 平台下运行的应用程序。下载地址:https://sourceforge.net/projects/mingw-w64/files/latest/download
2. 安装 VS Code 插件
打开 VS Code,按下 Ctrl + Shift + X 打开插件商店,搜索 C/C++,安装插件 C/C++。
3. 配置 VS Code
在 VS Code 中按下 Ctrl + Shift + P,输入 "C++",选择 "Edit Configurations (JSON)",在打开的文件中添加以下内容:
```
{
"configurations": [
{
"name": "Win32",
"intelliSenseMode": "msvc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "C:/mingw-w64/mingw64/bin/g++.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"windowsSdkVersion": "10.0.19041.0",
"intelliSenseEngine": "Tag Parser"
}
],
"version": 4
}
```
其中,"compilerPath" 是 MinGW-w64 安装路径下的 g++.exe 的路径。
4. 新建 C++ 文件
在 VS Code 中新建一个空白文件,保存为 .cpp 后缀名的文件。
5. 运行程序
在 C++ 文件中编写代码后,按下 F5 键或者按下 Ctrl + Shift + D 打开调试面板,点击绿色的运行按钮即可运行程序。
阅读全文