Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Replies
    8
    Views
    6,608

    [SOLVED] Re: Help with Java code,

    Try debugging the code by adding some println statements that print out the values of variables as the code executes so you can see what the computer sees as it executes the code.
    Print out the...
  2. Replies
    8
    Views
    6,608

    [SOLVED] Re: Help with Java code,

    That will take a search through the data to find the most and least values.

    What does the program output now as a result of these searches? Post the current code to show what it is doing.
  3. Replies
    8
    Views
    6,608

    [SOLVED] Re: Help with Java code,

    The code has two definitions for the variable: rainfall. One is an array and one is a double.
    rainfall.length
    and
    rainfall[0];
    are not valid for a double. Those statements are for arrays.

    ...
  4. Replies
    8
    Views
    6,608

    [SOLVED] Re: Help with Java code,

    Please post any questions or problems you are having?
    If there are errors, copy the full text of the messages and post them.
Results 1 to 4 of 4