Using Bluejay. Need code that prompts user to enter 5 test scores and their names. Calculate the average and display.
First initial and last name , 5 test scores, and average.
Please help. Thanks!
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Using Bluejay. Need code that prompts user to enter 5 test scores and their names. Calculate the average and display.
First initial and last name , 5 test scores, and average.
Please help. Thanks!
If you don't understand my answer, don't ignore it, ask a question.
I've tried a couple codes I've found online, but I'm completely lost and really need to get this done.
Do you have a list of the steps the program must do to solve the problem?
If not start there. Work on the details of what each step needs to do.
If you do have the list, start at the first one: code it, compile it, test it, fix the problems and redo until it works
Then move to the second step in the list and repeat the above.
When you have problems, post the full text of the error messages, the code and your questions.
Be sure to wrap your code with code tags:
[code=java]
YOUR CODE GOES HERE
[/code]
to get highlighting and preserve formatting.
If you don't understand my answer, don't ignore it, ask a question.
Do you know how to declare variables?
Do you know how to assign values to them?
Do you know how to take in input from the user?
Do you know how to do math operations? How would you go about calculating the average of 5 numbers using pencil and paper? Translate that process into code.