Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. int main(){
  3.  
  4. int rodrigo[2][3] = {{2,3,4},{8,9,10}};
  5.  
  6. for(int row=0l;row<2;row++){
  7.  
  8. for(int column=0;column<3;column++){
  9. cout << rodrigo[row][column] << " ";
  10. }
  11.  
  12. cout << endl;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement