CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 14 of 14

Thread: Arrays

Threaded View

  1. #1
    Join Date
    Aug 2009
    Posts
    52

    Arrays

    Hi.. Why is it that when i print the output would show all those junk at the bottom how do i make them print properly in chars? The idea is to printout this table below

    Code:
    import java.util.Scanner;
        public class CiphersApp{
           public static void main(String[]args){
             
             Ciphers ciphernew=new Ciphers();
             int i,j;
             Scanner sc=new Scanner(System.in);
             
             for(i=0;i<27;i++)
             {
                for(j=0;j<27;j++)
                   System.out.print(ciphernew.lookupTable+" ");
                System.out.println();
             }

    Output
    Code:
    [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb 
    [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb 
    [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb 
    [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb [[C@14318bb
    Last edited by hugo84; October 10th, 2009 at 05:04 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured