在C++中,可以將boolean值存儲在數組中并進行適當的操作,例如:
#include <iostream>
using namespace std;
int main() {
bool booleanArray[5] = {true, false, true, false, true};
// 訪問數組元素
cout << "Boolean array elements:" << endl;
for(int i = 0; i < 5; i++) {
cout << booleanArray[i] << " ";
}
cout << endl;
// 修改數組元素
booleanArray[2] = false;
cout << "After modifying element at index 2:" << endl;
for(int i = 0; i < 5; i++) {
cout << booleanArray[i] << " ";
}
cout << endl;
// 對數組元素進行操作
bool result = booleanArray[0] && booleanArray[1];
cout << "Boolean operation (AND) result: " << result << endl;
return 0;
}
在上面的示例中,我們聲明了一個包含5個boolean值的數組,然后訪問、修改數組元素,并進行布爾運算。可以根據實際需求對數組中的boolean值進行操作。