Sat Jun 09, 2007 11:54 am
for(int i=0;i<arr.length ;i++)
{ System.out.print("| ");
for(int j=0;j<arr[0].length;j++)
{ System.out.print(arr[i][j]+" "); }
System.out.println("| "); }
for(String[] i:arr)
for(String j:i)
System.out.print(j+" ");
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.