Search:

Type: Posts; User: Iamthecheese

Search: Search took 0.10 seconds.

  1. Replies
    10
    Views
    3,211

    Re: Array Lists, PLEASE HALP

    import java.util.Scanner;

    public class cheese_ArrayList
    {
    double[] list;// = new double[]; //store double values input by user
    private double sum, average, large, small;
    ...
  2. Replies
    10
    Views
    3,211

    Re: Array Lists, PLEASE HALP

    oh, sorry, it's under input. Assuming it's because of the no scanner thing. But how do I globalize the scanner to accept user input without a main? should I just put it in getData()?
  3. Replies
    10
    Views
    3,211

    Re: Array Lists, PLEASE HALP

    Okay, I now realize that I have a bigger problem. I know the UML Diagram goes as follows:

    cheese_ArrayList
    ------------------------------------------------------
    - ARRAY_MAX : Integer (FINAL) =...
  4. Replies
    10
    Views
    3,211

    Re: Array Lists, PLEASE HALP

    Thank you so much! I feel so stupid...that's what I get for not taking programming for 2 years :/

    I was wondering if fixing this debacle would fix my list[ count ] reference in the processData()...
  5. Replies
    10
    Views
    3,211

    Array Lists, PLEASE HALP

    Hello, I'm trying to do a program that asks the user to input double values and display the values, along with the sum, average, largest and smallest. The limit of inputs is 15. I have to clear...
Results 1 to 5 of 5