tämmöstä sit koulusa:
#include <iostream.h>
#include <iomanip.h>
main()
{
int x,taulu[2][5][2],y,z;
cout<<"Anna lukuja ";
for (x=0;x<2;x++)
{
for (y=0;y<5;y++)
{
for (z=0;z<2;z++)
cin>>taulu[x][y][z];
}
}
for (x=0;x<2;x++)
{
for (y=0;y<5;y++)
{
for(z=0;z<2;z++)
cout<<taulu[x][y][z];
}
}
}