Search:

Type: Posts; User: jakeburns

Search: Search took 0.11 seconds.

  1. Replies
    10
    Views
    1,155

    [SOLVED] Re: Reusing an Entered List of Array Elements

    and then how would I put those variables into play?
  2. Replies
    10
    Views
    1,155

    [SOLVED] Re: Reusing an Entered List of Array Elements

    Its a String array.
    If you ran my program or at least read it entirely it might help you a little...
  3. Replies
    10
    Views
    1,155

    [SOLVED] Re: Reusing an Entered List of Array Elements

    The program is a grading program. The teacher enters the "key" which are the correct answers for the assignment, test, quiz, etc. then the students answers are entered and they are compared to get...
  4. Replies
    10
    Views
    1,155

    [SOLVED] Re: Reusing an Entered List of Array Elements

    But how do I use a variable for when the amount of questions in the key will never be constant?
  5. Replies
    10
    Views
    1,155

    [SOLVED] Reusing an Entered List of Array Elements

    If you see in the code below where I print "Would you like to use previous key" I need to be able to save the previous key answers to be used again.. not sure how to go about doing this..


    import...
  6. [SOLVED] Re: Comparing Elements in Array to find the Highest Int

    Thanks for the help! This is the code I wrote to do it....


    for (int index = 0; index <= timesRan; index++)
    {
    if (studentAverage[index] > highest)
    highest = studentAverage[index];...
  7. [SOLVED] Re: Comparing Elements in Array to find the Highest Int

    I don't know what i would have to do to compare multiple array elements against each other.
  8. [SOLVED] Re: Comparing Elements in Array to find the Highest Int

    I am trying to compare all the students averages to find who has the highest one and list the grades and the student's names from least to greatest. I need help with this.
  9. [SOLVED] Comparing Elements in Array to find the Highest Int

    So in this program, which is a grading program, I am trying to compare all the students averages to find who has the highest one and list the grades and the student's names from least to greatest....
  10. Replies
    9
    Views
    5,250

    Re: Grading System Program

    Thanks for the answer, but I'm not sure what you are saying. Could you explain a little more?
    thanks
  11. Replies
    9
    Views
    5,250

    Storing different strings in a loop

    Hello, I am trying to figure out how each time I run the program, in the loop it runs and ask the user for the student name to connect with the students score. But if each time the loop ran the...
  12. Replies
    9
    Views
    5,250

    Re: Grading System Program

    A little back ground on me.... Im 15 and just started learning java over the summer 4 months ago. Thanks for the advice.
  13. Replies
    9
    Views
    5,250

    Re: Grading System Program

    Lol. Its not finished I was just stuck on this one part. So thanks for the feedback but just bashing my design doesn't help me. Tell me how I could make it better.

    Thanks
  14. Replies
    9
    Views
    5,250

    Grading System Program

    Ok so this is a grading program. I have it so the user can input 2 students and then at the end using an if statement it is suppose to compare them and print out who had the higher grade. Seems...
  15. Replies
    10
    Views
    958

    Re: Help with paper rock scissors game

    After correcting loads of errors I got it working within 10 minutes! Great program, do you have it working yet?
  16. Replies
    4
    Views
    953

    Re: Bank System Simulator

    Welcome to your account! Would you like to withdraw, deposit, or view your balance?
    balance
    $100.0
    Unknown command.
    Hello, welcome to the bank! Please enter password to access account.
  17. Replies
    4
    Views
    953

    Bank System Simulator

    I have a problem with my code. When I get prompted if i want to deposit, withdraw, or view my balance I type balance and it shows me the balance but they shows code that I also have in place and says...
  18. Replies
    4
    Views
    8,895

    Re: StdDraw Cannot be Resolved??

    You are getting StdDraw cannot be resolved because the StdDraw class has to be in the same package as this class
  19. Replies
    5
    Views
    1,579

    Re: Java - eclipse (HiLo guessing game)

    I got rid of your private scanner and replaced all guess = scan.nextInt(); with guess = input.nextInt();
    and it works fine..

    Code removed ********
Results 1 to 19 of 21