Search:

Type: Posts; User: richardman54

Search: Search took 0.15 seconds.

  1. Re: Help with method. Finding minimum value in Array

    so something like this...



    public int minValue(){// Finds the minimum value value in the array scoreboard
    int smallest=scoreboard[0];
    for(int j=0;j<13;j++){
    if(scoreboard[j] <...
  2. Help with method. Finding minimum value in Array

    So I trying to find the minimum value in the scoreboard array. I tried this



    public int minValue(){// Finds the minimum value value in the array scoreboard
    int x=0;
    for(int...
Results 1 to 2 of 2