Bit1

Source

Aug 16th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public void main(String[] args) {
  2.             int[] testMarks = getMarks();
  3.             for (int n = 0; n < testMarks.length; n++) {
  4.                 System.out.print(testMarks[n] + " ");
  5.                 if (n % 10 == 9)
  6.                     System.out.println();
  7.             }
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment