21xrx.com
2024-11-10 00:27:35 Sunday
登录
文章检索 我的文章 写文章
【教程】C++简单代码例子
2023-07-01 19:33:12 深夜i     --     --
教程 C++ 简单代码 例子 编程初学者

C++是一种高级编程语言,被广泛应用于各种领域,如游戏开发、嵌入式系统、图形界面等。学习C++可以帮助您开发高效且功能强大的软件。在这篇文章中,我们将提供一些C++简单代码例子来帮助初学者快速了解这种编程语言。

1. 输出“Hello World”

这是每个编程语言中都必备的入门程序,它可以让您对编译器、环境和语法有一个初步的了解。

#include

using namespace std;

int main()

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

 return 0;

2. 计算两个数字的和

C++是一门强类型语言,它需要在运行程序之前声明变量的类型和名字。在下面的代码中,我们将从用户输入中获取两个数字,并计算它们的和。

#include

using namespace std;

int main() {

 int num1, num2, sum;

 cout << "Enter two numbers: ";

 cin >> num1 >> num2;

 sum = num1 + num2;

 cout << "The sum of " << num1 << " and " << num2 << " is " << sum;

 return 0;

}

3. 计算半径为r的圆的周长和面积

在做任何图形学编程之前,计算圆的周长和面积是一个良好的开始。

#include

using namespace std;

int main() {

 float r, area, circumference;

 const float PI = 3.14159265359;

 cout << "Enter radius of circle: ";

 cin >> r;

 area = PI * r * r;

 circumference = 2 * PI * r;

 cout << "Area of the circle is: " << area << endl;

 cout << "Circumference of the circle is: " << circumference;

 return 0;

}

4. 使用循环输出斐波那契数列

斐波那契数列是一种非常有趣的数列,它定义为前两个数字等于1,然后每个数字都等于前两个数字之和。

#include

using namespace std;

int main() {

 int n, t1 = 0, t2 = 1, nextTerm = 0;

 cout << "Enter the number of terms: ";

 cin >> n;

 cout << "Fibonacci Series:" << endl;

 for (int i = 1; i <= n; ++i) {

   if(i == 1)

     cout << t1 << "

   if(i == 2)

     cout << t2 << "

   nextTerm = t1 + t2;

   t1 = t2;

   t2 = nextTerm;

   cout << nextTerm << ", ";

 }

 return 0;

}

5. 使用类和对象打印学生详细信息

C++是面向对象编程语言的范例之一,下面的代码演示了如何使用类和对象打印关于学生的详细信息。

#include

#include

using namespace std;

class Student

 public:

  string name;

  int age;

  string address;

  string phoneNumber;

;

int main()

 Student newStudent;

 newStudent.name = "John Smith";

 newStudent.age = 25;

 newStudent.address = "123 Main St

这些C++简单代码例子可以帮助初学者快速入门,理解C++的基本语法和概念。当你掌握了这些基础知识后,你就可以更深入的学习和应用这种编程语言了。

  
  

评论区

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