C++基础——书写"Hello World"
一、前言
首先为大家介绍一下什么是C++。
上述描述来自于百度百科!!!
二、书写"Hello World"
1.头文件
#include "stdafx.h"
#include<iostream>
using namespace std;
int main()
基本上所有C++程序都有上述代码,写上就好。(小白解释不清楚,希望有大佬说明一下)
2.主文件
{
cout <<"Hello World" << endl;
//cout表示基本输出
//如果输出的是字符则需要添加一个双引号
//最后的endl表示换行
system("pause");
return 0;
}
3.整体代码
#include "stdafx.h"
#include<iostream>
using namespace std;
int main()
{
cout <<"Hello World" << endl;
system("pause");
return 0;
}
4.运行结果
三、总结
本篇主要就是介绍C++一下如何书写"Hello World"。
(C++入门小白且是第一次写博客,各位大佬如果发现有错误,希望各位大佬动动你珍贵的小手为在下指正,感谢!!!)