C++语言实现hello world代码

代码和注释

两种注释方式:

  • 一种是以/*开始、以*/结束的块注释(block comment);
  • 另一种是以//开始、以换行符结束的单行注释(line comment)。

 

以下用了几种方法来输出hello world


/* #include
    #:预处理标志,后面跟预处理指令,include:预处理指令,包含 :c++头文件,输入输出流
        这行的作用就是在预编译之前先执行这行代码。系统提供的头文件用<>括起来
   #include
        这个头文件是c标准的头文件,c++中叫非标准库文件。
   using namespace std;使用标准命名空间。也就是说C++当中的标准库文件,函数,对象啊等都存放在std空间中,
        作用:作用是在编写大程序的时候能够定义重复的变量,(标识符)
        当需要调用标准空间中的对象,函数的时候调用方法:std::cout std::cin std::endl;需要加双冒号
    #include #include的区别:
        使用#include的时候,需要使用using namespace std;而#include不需要
*/
#include 
//using std::cout;  //使用std空间中cout对象。::调用的意思
//using std::endl;
int main(void)
{
    //cout<<"hello world"<
using namespace std;
int main(void)
{
    cout<<"hello world"<
  int main(void)
  {
    cout<<"hello world"<

 

你可能感兴趣的:(C++)