21xrx.com
2024-11-22 06:54:40 Friday
登录
文章检索 我的文章 写文章
C++编程入门代码
2023-07-01 11:03:16 深夜i     --     --
C++ 编程 入门 代码 学习

C++ 是一门流行的编程语言,它具有高效性和灵活性,因此吸引了无数程序员的青睐。如果你想学习 C++ 编程,那么下面这些简单的代码示例可以帮助你快速入门。

1. Hello World

这是一种经典的编程示例,可以让你很快地了解编程环境的基本情况。


#include <iostream>

using namespace std;

int main()

  cout << "Hello World!" << endl;

  return 0;

2. 数组

数组是 C++ 中最基本的数据结构之一。


#include <iostream>

using namespace std;

int main() {

  int arr[5] = 5;

  for(int i = 0; i < 5; ++i) {

    cout << arr[i] << " ";

  }

  return 0;

}

3. 函数

C++ 语言中的函数非常强大,它们可以被重载,也可以返回多个值。


#include <iostream>

using namespace std;

int multiply(int a, int b) {

  return a * b;

}

int main() {

  int a = 5, b = 6;

  int product = multiply(a, b);

  cout << "The product of "<< a << " and " << b << " is " << product;

  return 0;

}

4. 类

C++ 是一种面向对象的语言,因此我们需要学会如何使用类和对象。


#include <iostream>

using namespace std;

class Rectangle {

  private:

    int length;

    int width;

  public:

    Rectangle(int l, int w)

      length = l;

      width = w;

    

    int area() {

      return length * width;

    }

};

int main() {

  Rectangle rect(5, 10);

  int area = rect.area();

  cout << "The area of the rectangle is " << area << endl;

  return 0;

}

5. 指针

指针是 C++ 中非常重要的概念之一。


#include <iostream>

using namespace std;

int main() {

  int a = 5;

  int *ptr = &a;

  cout << "The value of a is " << a << endl;

  cout << "The value of ptr is " << ptr << endl;

  cout << "The value pointed to by ptr is " << *ptr << endl;

  return 0;

}

以上是 C++ 编程入门的几个简单的代码示例。如果你想要深入学习 C++,可以阅读相关的书籍和教程,并多写代码实践。希望能对你有所帮助!

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复