声明一个包含8个元素的整形数组使用STL中的算法
时间: 2024-02-22 17:57:56 浏览: 69
stl算法中文解析.rar
可以使用STL中的`std::array`容器来声明一个包含8个元素的整型数组,并使用STL中的算法对其进行操作。示例如下:
```c++
#include <iostream>
#include <array>
#include <algorithm>
int main() {
std::array<int, 8> arr = { 1, 2, 3, 4, 5, 6, 7, 8 };
// 使用STL中的算法对数组进行操作
std::reverse(arr.begin(), arr.end());
// 输出数组元素
for (auto& elem : arr) {
std::cout << elem << " ";
}
std::cout << std::endl;
return 0;
}
```
输出结果为:
```
8 7 6 5 4 3 2 1
```
阅读全文