当前位置:   article > 正文

VsCode中运行C/C++_vscode运行c++代码

vscode运行c++代码


1. 插件 runCode

在 VsCode 中的扩展商店中,下载插件 Code Runner
在这里插入图片描述
安装完成之后,进行一些配置更改:
在这里插入图片描述

配置完成之后,开始尝试编写 C/C++ 文件
在这里插入图片描述
编写完成之后,点击 Run Code,就会看到左侧生成 exe 文件,并在下边终端输出结果
在这里插入图片描述


2. 配置环境 mingw64

  1. 下载 mingw64:
    mingw64:下载链接
    选取对应版本
    在这里插入图片描述

  2. 下载好之后,将压缩包解压,记录解压之后的地址 URL

  3. 配置环境变量 —> 用户变量里的 Path —> 加入记录下的 URL 里的 bin 目录
    在这里插入图片描述
    在这里插入图片描述

  4. 命令行验证,gcc 环境是否配置成功
    在这里插入图片描述

  5. 在C/C++的文件的目录下,建立一个 .vscode 文件夹,里面包含三个文件:c_cpp_properties.jsonlaunch.jsontasks.json(可以手动创建,也可以按 F5 之后,根据给出信息创建)
    在这里插入图片描述

  6. 编写里面 .vscode 中三个文件的内容:

c_cpp_properties.json
其中: complierPath 换成你安装的 mingw64 的目录里的 bin 中的 g++.exe 路径

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.19041.0",
            "compilerPath": "D:/RuntimeEnvironment/mingw64/bin/g++.exe",
            "cStandard": "c17",
            "cppStandard": "c++20",
            "intelliSenseMode": "gcc-x64"
        }
    ],
    "version": 4
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

launch.json

{
    "configurations": [
        {
            "name": "编译并运行",
            "type": "cppvsdbg",
            "request": "launch",
            "program": "cmd",
            "args": [
                "/C",
                "${fileDirname}\\${fileBasenameNoExtension}.exe",
            ],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "internalConsoleOptions": "neverOpen",
            "preLaunchTask": "C/C++: g++.exe" 
        }
    ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

tasks.json
其中: command 换成你安装的 mingw64 的目录里的 bin 中的 g++.exe 路径
(其中的 label 要与 launch.json 中的 preLaunchTask 相对应)

{
    "tasks": [
        {
            "type": "cppbuild",
            "label": "C/C++: g++.exe",
            "command": "D:\\RuntimeEnvironment\\mingw64\\bin\\g++.exe",
            "args": [
                "-fdiagnostics-color=always",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {
                "panel": "new",
                "focus": true
            }
        }
    ],
    "version": "2.0.0"
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

在 C/C++ 文件下,按 CRTL + F5 运行,进行试验:
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/65711
推荐阅读
相关标签
  

闽ICP备14008679号