Odpowiedź:
#include <iostream>
int main() {
int b[] = {3, 5, 2, 1, 4, 7, 6, 2, 8, 5, 6, 3};
const int w = 3;
const int h = 4;
for(int i = 0; i < h; i++){
for(int j = 0; j < w; j++){
std::cout << b[w * i + j] << " ";
}
std::cout << std::endl;
}
return 0;
}
Wyjaśnienie:
O to chodziło?