C++基础

作者: Young1217 | 来源:发表于2019-01-19 14:39 被阅读0次

    程序结构

    程序包含预处理部分和程序主体部分。

    ```

    #include <iostream>

    int main()

    { std::cout << "Hello world, I am ready for C++";

    return 0;

    }

    ```

    添加注释

    1.注释块

    /*write a C++ program that outputs the following statement:

    *** "Hello world, I am ready for C++"

    */

    2注释行

    //print a message to the user <- this line is a comment

    编程风格

      Modern C++ Coding Guidelines

      Google C++ Style Guideline

     编译与运行

    编译命令是:

    g++ main.cpp -o main.out

    用于C ++编译器的G ++。文件名是main.cpp。-o用于输出的名称。Main.out是输出的名称。

    要运行输出文件main.out:::  ./main.out

    使用命名空间

    namespace用法

    控制台显示

    cout<<"int size = "<<sizeof(int)<<"\n";

    cout<<"int size = "<<sizeof(int)<<endl;

    常量

    const int weightGoal = 100;

    相关文章

      网友评论

          本文标题:C++基础

          本文链接:https://www.haomeiwen.com/subject/ngiadqtx.html