That's not what I meant:) I like the tabs being above the URL bar, but previously the tab selection started from the top of the screen (y=0). So I could just quickly push my mouse up and done. Now I have to actually aim it just slightly below the top, because the tab is now a few pixels below the top.
In other words, previously I only had to aim with my mouse horizontally, now I have to both vertically and horizontally. Super annoying.
Question
+Mystic MVC
I am trying to using the prinf method while printing values of an array. Below is an example of what I'm trying to obtain in formatting output:
Here is a snippet of code I'm trying to use the printf method with:
for (int row=0; row < payScaleTable.length; row++) { System.out.print("Person #" + printPerson); printPerson = printPerson + 1; for (int col=0; col < payScaleTable[row].length; col++) System.out.print("\t" + payScaleTable[row][col] + "\t"); System.out.println(); }Anytime I start adding the prinf method to that statement inside the for loop, I start getting "Array out of bounds" errors.
Link to comment
https://www.neowin.net/forum/topic/980160-java-arrays-using-printf/Share on other sites
7 answers to this question
Recommended Posts