C++教程(二)——第一个程序:编写hello world

1、点击左上角【文件】,再点击创建【项目】,设置项目名称,选择存储地址,再应用。

 2、首先在解决方案资源管理器中点击【源文件】,右键【添加】--->【新建项】。

C++教程(二)——第一个程序:编写hello world_第1张图片

3、在弹出窗口中选择C++文件(.cpp),设置名称并设置存储位置。最后,点击添加。

C++教程(二)——第一个程序:编写hello world_第2张图片

4、添加后可看到有一个demo01以. cpp为后缀的文件。

C++教程(二)——第一个程序:编写hello world_第3张图片

5、在demo01. cpp文件内,写入C++语言框架。

C++教程(二)——第一个程序:编写hello world_第4张图片 6、点击【本地Windows调试器】运行。

C++教程(二)——第一个程序:编写hello world_第5张图片 7、运行结果如下所示。

C++教程(二)——第一个程序:编写hello world_第6张图片 8、添加cout<<“hello world” << endl;再运行,可以打印出hello world。(具体语法我们后期更新)

C++教程(二)——第一个程序:编写hello world_第7张图片 

 

 

 

你可能感兴趣的:(C++教程,c++)