Write a program that prints the characters in the ASCII character table from ! to ~. Display ten characters per line. The ASCII table is viewable at ascii table. Be sure to seperate characters are separated by exactly one space.
Breaking it down
Using IntStream.rangeClosed which will create a range of chars between ! and ~ we can loop over outputting the value. Since i is an int it will need to be converted to a char using Character.toString.