Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

c++. how to cout an array of numbers into rows of four?

OpenStudy (anonymous):

A control loop like below will help get you started. for (int i; i < array.length; i += 4) { cout << a[i] << " " << a[i+1] << " " << a[i+2] << " " << a[i+3] << endl; }

OpenStudy (anonymous):

for(int i=1;i<n;i++){for(int j=0;j<5;j++){ cout<<mat[i][j]<<"\t";} cout<<"\n"; }

OpenStudy (anonymous):

perfecttt.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!