C++ 在 vs 代码中不是 运行

C++ not running in vs code

我正在尝试 运行 我的 C++ 代码在 vs 代码中。我已经安装了 Microsoft 的 C/C++ 全局扩展以及代码 运行ner 扩展。 当我 运行 我的代码在终端中显示时。

user@LAPTOP-7LH95TTK MINGW64 ~/Desktop
$ cd "c:\Users\user\Desktop\" && g++ demo.cpp -o demo && "c:\Users\user\Desktop\"demo
bash: cd: c:\Users\user\Desktop" && g++ demo.cpp -o demo && c:UsersuserDesktop"demo: No such file or directory

我该怎么办? 我认为当我 运行 我的代码不正确并且我不知道如何更改它时,终端中显示的默认命令。

下面是来自 demo.cpp 文件的代码

#include<bits/stdc++.h>
using namespace std;
int main(){
    cout<<"Hello everyone"<<endl;
    return 0;
}

您可以通读 https://code.visualstudio.com/docs/cpp/config-mingw(如果使用 MinGw)。

如果您安装了 MSVC(MS C++ 编译器),而不是 'g++' 命令,您将使用 'cl' 命令进行编译(相关指南位于 https://code.visualstudio.com/docs/cpp/config-msvc) .

文章简介:

You should have a tasks.json file inside .vscode.

It is the file that is used for instructions to build your code

And, there can be a launch.json also, that is used by VS Code for instructions to debug it. (Not Required)

我通常做的是在“调试”选项卡中单击“创建 launch.json”,这将要求您选择工具链(编译器,...),然后创建 tasks.json , 和 launch.json 给你。

然后您可以只使用“Shift+Ctrl+B”(默认)来构建代码。调试选项只是一个加号,你迟早会需要 :D

1.I think you should downlaod Mingw gcc compiler and install in your system 
 properly step by step.
  2.click on Advance setting by right click on My Pc
 3.click on Environment Varaible
 4. move to System Variable there
 5. take cursor on PATH click
 6.click on Edit
 7. click New
 8.copy the C:\Mingw\bin or where u have installed
 9. Move the new Path to Top
 10.Click ok
  Your problem Solved