I\'m having a problem with two dimensional array. I\'m having a display like this:
1 2 3 4 5 6 7 9 10 11 12 13 14 15 16 . . . etc
What basi
You need to print a new line after each row... System.out.print("\n"), or use println, etc. As it stands you are just printing nothing - System.out.print(""), replace print with println or "" with "\n".
System.out.print("\n")
println
System.out.print("")
print
""
"\n"