SyntaxFix
Write A Post
Hire A Developer
Questions
String[][] shades = new String[intSize][intSize]; // print array in rectangular form for (int r=0; r<shades.length; r++) { for (int c=0; c<shades[r].length; c++) { shades[r][c]="hello";//your value } }