Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 300 Bytes

File metadata and controls

22 lines (17 loc) · 300 Bytes

C++

C++简介

为什么语法这么难学,因为它设计是为了同时支持4种编程范式!!!

示例:

四种编程范式实现加法:

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello, world!" << endl;
    return 0;
}
print(1)