21xrx.com
2024-11-10 00:53:37 Sunday
登录
文章检索 我的文章 写文章
C++程序设计代码示例
2023-07-14 22:29:03 深夜i     --     --
C++ 程序设计 代码示例

C++程序设计是计算机科学中非常重要的一门学科,它涵盖了计算机科学的许多方面,包括数据结构、算法、面向对象编程等等。下面是一些C++程序设计的代码示例,希望能对大家的学习和应用有所帮助。

1. 计算圆的面积和周长

#include

using namespace std;

int main()

{

  double radius, perimeter, area;

  const double PI = 3.1415926535;

  cout << "请输入圆的半径:";

  cin >> radius;

  perimeter = 2 * PI * radius;

  area = PI * radius * radius;

  cout << "圆的周长是:" << perimeter << endl;

  cout << "圆的面积是:" << area << endl;

  return 0;

}

这段代码可以让用户输入圆的半径,然后计算出圆的面积和周长,并输出到屏幕上。

2. 判断一个数是奇数还是偶数

#include

using namespace std;

int main()

{

  int number;

  cout << "请输入一个整数:";

  cin >> number;

  if(number % 2 == 0)

    cout << number << "是偶数" << endl;

  else

    cout << number << "是奇数" << endl;

  return 0;

}

这段代码可以让用户输入一个整数,然后判断这个数是奇数还是偶数,并输出到屏幕上。

3. 将一组数据从大到小排序

#include

using namespace std;

void sort(int arr[], int len) {

  for (int i=0; i

    for (int j=0; j

      if (arr[j]

        int temp = arr[j];

        arr[j] = arr[j+1];

        arr[j+1] = temp;

      }

    }

  }

}

int main() {

  int arr[] = {3, 8, 2, 5, 0};

  int len = sizeof(arr) / sizeof(arr[0]);

  sort(arr, len);

  for (int i=0; i

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

  }

  return 0;

}

这段代码可以将一组数据从大到小排序,并输出到屏幕上。

4. 使用对象和类来实现一个简单的计算器

#include

using namespace std;

class Calculator {

public:

  int Add(int x, int y) {

    return x + y;

  }

  int Subtract(int x, int y) {

    return x - y;

  }

  int Multiply(int x, int y) {

    return x * y;

  }

  int Divide(int x, int y) {

    if (y == 0) {

      cout << "Error: cannot divide by zero." << endl;

      return 0;

    }

    return x / y;

  }

};

int main() {

  Calculator calculator;

  int x = 6, y = 2;

  cout << "x + y = " << calculator.Add(x, y) << endl;

  cout << "x - y = " << calculator.Subtract(x, y) << endl;

  cout << "x * y = " << calculator.Multiply(x, y) << endl;

  cout << "x / y = " << calculator.Divide(x, y) << endl;

  return 0;

}

这段代码可以使用对象和类来实现一个简单的计算器,实现了加、减、乘、除等基本操作,并输出到屏幕上。

总之,C++程序设计是一门非常实用的学科,可以应用于许多领域,希望上面的示例能对大家有所帮助。

  
  

评论区

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