Search:

Type: Posts; User: Imeri0n

Search: Search took 0.17 seconds.

  1. Replies
    1
    Views
    1,382

    problem with code

    import java.util.*;


    /**
    * Write a description of class StockControl here.
    *
    * @author (your name)
    * @version (a version number or a date)
    */
    public class StockControl
  2. Replies
    13
    Views
    1,669

    Re: Need help, cannot find error

    Any ideas how to solve problem?
  3. Replies
    13
    Views
    1,669

    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++) {...
  4. Replies
    13
    Views
    1,669

    Re: Need help, cannot find error

    cannot find symbol - method getSampleValue()
  5. Replies
    13
    Views
    1,669

    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++) {
    ...
  6. Replies
    13
    Views
    1,669

    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++) {
    ...
  7. Replies
    13
    Views
    1,669

    need help with my code

    Here is the code:




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

    Need help, cannot find error

    Here is the code:


    import java.util.ArrayList;
    /**
    * A class to model an Analyser
    *
    * @author (XXXX)
    * @version (1.0)
    */
  9. Thread: need help guys

    by Imeri0n
    Replies
    9
    Views
    2,402

    need help guys

    Part 1. The basic classes and addAddress method
    Create a class called Address that has two fields representing the name and the email address.
    Write a constructor for this class.
    Create a class...
Results 1 to 9 of 9