Search:

Type: Posts; User: astrojunk

Search: Search took 0.13 seconds.

  1. Replies
    2
    Views
    2,212

    Two-Dimensional Array and Loops

    Hi.. Is it possible to assign values to a multi-dimensional array via a loop? The first column contains the numbers 1,2,3,4,5, the second column contains the numbers 100,200,300,400,500, and the...
  2. [SOLVED] Re: Couldn't search for a string in an array.. Help please..

    Got it.. Thanks so much..
  3. [SOLVED] Couldn't search for a string in an array.. Help please..

    boolean found=false;
    System.out.print("\n\tEnter name to search: ");
    String namesearch=in.nextLine();
    int i=0;
    while(i<ctr && !found)
    {
    if(namearray[i]==namesearch)
    {...
Results 1 to 3 of 3