I haven an assignment for school and I'm a beginner into Java. I did the ASCII char loops like I needed to, but I want it to look pretty.
How do I make a single for-loop into multiple columns to show up on the output screen without having to scroll?
public static void main(String[] args) {
for (int i = 32; i <= 126; i++)
System.out.println((char) i);
}//end main
charloops? Is this trying to print out a table of the printable ASCII character set?