在C++中,使用std::cout
或std::printf
函數輸出數組是最常用的方法。下面是一些技巧:
int arr[] = {1, 2, 3, 4, 5};
for(int i = 0; i < 5; i++) {
std::cout << arr[i] << " ";
}
std::copy
函數將數組元素復制到std::ostream_iterator
對象中輸出:int arr[] = {1, 2, 3, 4, 5};
std::copy(std::begin(arr), std::end(arr), std::ostream_iterator<int>(std::cout, " "));
int arr[] = {1, 2, 3, 4, 5};
for(int num : arr) {
std::cout << num << " ";
}
這些是一些簡單但有效的方法來輸出數組元素。可以根據實際需求選擇最適合的方法。