Search:

Type: Posts; User: Shrutika

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    962

    Re: Java 2d Character array

    it doesnt work
  2. Replies
    6
    Views
    962

    Re: Java 2d Character array

    1. First I want to convert 2d character array contain number into 2d intger array. for eg. "8" -> 8
    2. Then want to make row of each 2d int array into string. 8 5 -> "85"
    3. Then convert string...
  3. Replies
    6
    Views
    962

    Java 2d Character array

    for(int i=0;i<c1+1;i++)
    {
    for(int j=0;j<3;j++)
    {
    System.out.print(ascii[i][j]);

    }
    // System.out.println();
    }
Results 1 to 3 of 3