C++

Introduction

C++是一种兼具面向过程和面向对象特征的编程语言

Start

  • 让我们写下第一个C++文件!
hello.cpp
1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main()
{
cout << "Hello World!" << endl;
return 0;
}
  • 使用Linux命令行来调用编译器

1
$ g++ -o hello hello.cpp
  • 运行编译好的程序

1
2
$ ./hello
Hello World!
作者

huayi

发布于

2022-07-14

更新于

2023-04-16

许可协议