Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
String line = "";
int[] intArray = {9,1,8,3,7,3,7,4,6,5};
int numPerLine = 3;
String sep = " ";
for (int i=0; i<intArray.length; i++)
{
if (line.length > 0)
{
line += sep;
}
String line += intArray[i];
if ((i+1) % numPerLine == 0)
{
System.out.println(line);
line = "";
}
}