1. Change this loop so it prints ABCDEFGHIJKLMNOPQRSTUVWXYZ with one character being printed each time through the loop.
HINT: Google a Unicode table so you can get the right values and cast the numbers as (char)
for (int i = 0; i < 26; i++) { System.out.print(i+1); }
2. The procedure cross takes an int as its input and prints a cross made out of octothorpes.
Example:
cross(2) --> ## ## ###### ###### ## ## cross(5) --> ##### ##### ##### ##### ##### ############### ############### ############### ############### ############### ##### ##### ##### ##### #####
Write cross.