美文网首页
C++学习-day1

C++学习-day1

作者: 下午三点的闲暇 | 来源:发表于2019-10-12 15:25 被阅读0次

    首先编辑文件

    C++文件的后缀为 .cpp文件,在linux下面编辑代码  vi helloworld.cpp,输入一下内容: (//后加注释,便于理解)

    #include <iostream> //头文件

    using namespace std; //告诉编译器使用 std 命名空间。命名空间是 C++ 中一个相对新的概念

    int main()  // main() 是程序开始执行的地方, int main() 是主函数,主函数下加{}

    {

        cout << "Hello,world!" << endl; //输出 Hello world (每行的结尾需要加 ; ,)

    return 0;  //终止 main( )函数,并向调用进程返回值 0。

    }

    其次编译代码

    编译用g++ ,编译后生成的为可执行文件,

    如果不指定输出,直接输出a.out ,如果指定,用-o 选项指定可执行程序的文件名,生成一个helloworld的可执行文件

    g++ helloworld.cpp -o helloword

    最后执行文件

    执行helloworld,在linux下,直接执行上一步生成的执行文件

    ./helloword

    相关文章

      网友评论

          本文标题:C++学习-day1

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