赞
踩
vscode官网链接
下载适合你的vscode,之后打开vscode
在插件中搜索C/C++点击install安装
新建.cpp文件
编写如下代码:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}
运行程序,出现hello world 则c++环境配置成功
现在可以愉快的进行C++编程了!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。