C++开发环境配置

发布时间 2024-01-02 11:38:46作者: 奔跑的窜天熊

01.hello world 程序

#include<iostream>
using namespace std;
/*
写下一个字母,产生检索,点了别的地方,检索消失怎么办? ctrl+ j
出现相关检索,怎么选中?鼠标点 或者 tab 键

*/
int main() {
cout << "hello world!" << endl;

return 0;
}

02.Visiual Studio2022 对文本的存储不是UTF 8,为了跟其他编译器一样,要转化为 UTF 8:

在哪里找?拓展-->管理拓展  这里面检索 force utf8  with bom

03.要下载新工具,在哪下载?

工具-->获取新的工具和功能