Search:

Type: Posts; User: Imeri0n

Search: Search took 0.11 seconds.

  1. Replies
    13
    Views
    1,647

    Re: Need help, cannot find error

    Any ideas how to solve problem?
  2. Replies
    13
    Views
    1,647

    Re: Need help, cannot find error

    made it like this:

    public int highestTempRecorded()
    {
    int highestTemp = samples[0];
    int highestTempRecorded = 0;
    for(int index = 1; index < samples.length; index++) {...
  3. Replies
    13
    Views
    1,647

    Re: Need help, cannot find error

    cannot find symbol - method getSampleValue()
  4. Replies
    13
    Views
    1,647

    Re: Need help, cannot find error

    Thanks, this problem is solved!)

    I got next error here:


    public int highestTempRecorded()
    {
    int highest = 0;
    for(int index = 0; index < samples.size(); index++) {
    ...
  5. Replies
    13
    Views
    1,647

    Re: need help with my code

    solved, thanks! :))

    next error appearing here


    public int highestTempRecorded()
    {
    int highest = 0;
    for(int index = 0; index < samples.size(); index++) {
    ...
  6. Replies
    13
    Views
    1,647

    need help with my code

    Here is the code:




    import java.util.ArrayList;
    /**
    * A class to model an Analyser
    *
    * @author (XXXX)
  7. Replies
    13
    Views
    1,647

    Need help, cannot find error

    Here is the code:


    import java.util.ArrayList;
    /**
    * A class to model an Analyser
    *
    * @author (XXXX)
    * @version (1.0)
    */
Results 1 to 7 of 7