Search:

Type: Posts; User: djhunt90

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    1,538

    Re: Help with Arrays

    I actually believe I just answered my own question!
  2. Replies
    7
    Views
    1,538

    Re: Help with Arrays

    I changed it up a little:


    public static char letterGrade (double arrayIn[]) {

    double abc = 0;
    for(int i = 0;i < arrayIn.length;i++) {
    abc += arrayIn[i];

    } // end for
  3. Replies
    7
    Views
    1,538

    Re: Help with Arrays

    Alright, so I figured out 95% of it. I'm getting the code to output correctly. I have one method left to conquer.

    I have to write a method that grabs the input from the Average Grade and...
  4. Replies
    7
    Views
    1,538

    Help with Arrays

    Hey yall,

    This is my first Java Programming course and I'm a little stuck on the arrays section. Our assignment is to create multiple single and multidimensional arrays and also create multiple...
Results 1 to 4 of 4