Guest User

Untitled

a guest
Nov 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import java.io.*;
  2.  
  3.  
  4. public class DebuggingExercise {
  5.  
  6. public static void main(String[] args)
  7. {
  8. int[][] testArray = new int[5][6];
  9.  
  10. for(int i=0;i<5;i++)
  11. {
  12. for(int j=1; j<=6; j++)
  13. testArray[i][j] = (i+1)*j;
  14. }
  15. }
  16.  
  17.  
  18.  
  19. }
  20.  
  21. for(int j=1; j<=6; j++)
  22. testArray[i][j] = (i+1)*j;
  23.  
  24. int[][] testArray = new int[5][6];
  25.  
  26. for(int i=0;i<5;i++)
  27.  
  28. for(int j=1; j<=6; j++)
Add Comment
Please, Sign In to add comment