标题 创建第一个C++程序 1、点开visual Studio 2019 2、创建空项目 3、添加项目名称 4 、添加新建项 5、添加源文件 6、创建成功 7、写入语句 #include<iostream> using namespace std; int main() { cout << "hello world"; system("pause"); return 0; }