gpt4 book ai didi

c++ - 无法在 VS Code 上使用代码运行器运行 C++ 文件

转载 作者:行者123 更新时间:2023-12-04 14:28:10 32 4
gpt4 key购买 nike

我无法通过代码运行器扩展在 VS Code 上运行我的 CPP 文件。
它发生在我尝试在 vs 代码上将 conda 激活为 python 解释器之后。

这是运行 C++ 文件后显示的错误(它在运行其他 cpp 文件时也显示相同的错误)

PS C:\Users\hp> g++ *.cpp -o job_queue && ./job_queue.exe
At line:1 char:24
+ g++ *.cpp -o job_queue && ./job_queue.exe + ~~
The token '&&' is not a valid statement separator in this version.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : InvalidEndOfLine



设置.json
{
"C_Cpp.updateChannel": "Insiders",
"python.pythonPath": "C:\\Users\\hp\\AppData\\Local\\Programs\\Python\\Python38\\python.exe",
"window.zoomLevel": 0,

"timeline.pageSize": 1,
"terminal.integrated.shell.windows": "",
"code-runner.runInTerminal": true,
"code-runner.executorMap": {

"cpp": "g++ *.cpp -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe",


},
"code-runner.ignoreSelection": true,
"code-runner.languageIdToFileExtensionMap": {


},
"code-runner.defaultLanguage": "C++",
"terminal.integrated.automationShell.windows": "",

}

最佳答案

这对我有用

"cpp": "cd $dir ; g++ $fileName -o $fileNameWithoutExt.exe ; .\\$fileNameWithoutExt.exe",

关于c++ - 无法在 VS Code 上使用代码运行器运行 C++ 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62288990/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com