Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void main(String[] args) {
- int[] testMarks = getMarks();
- for (int n = 0; n < testMarks.length; n++) {
- System.out.print(testMarks[n] + " ");
- if (n % 10 == 9)
- System.out.println();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment