在C++中,您可以使用索引來訪問數組的元素
#include<iostream>
int main() {
int my_array[] = {1, 2, 3, 4, 5}; // 定義一個包含5個整數的數組
for (int i = 0; i < 5; ++i) {
std::cout << "Element at index " << i << ": " << my_array[i]<< std::endl;
}
return 0;
}
在這個例子中,我們首先定義了一個名為my_array
的整數數組。然后,我們使用一個for循環遍歷數組的每個元素。在循環內部,我們使用索引i
來訪問數組的當前元素,并將其打印到控制臺。注意,數組索引從0開始,所以最后一個元素的索引是數組大小減1。