#hi can any help me with this java project
4 messages · Page 1 of 1 (latest)
just sum those numbers up and divide by the amount
Sometimes, you have to just talk to yourself about how to code problems. Don't start typing code if you are not sure.
Looking at that image, I would start by saying.
- Print out the question to console
- Get input of course from user and then print to console
- Print out the next question to console
- Get input of marks/grades from user/keyboard.
- Print output message of marks plus the average of marks on the same line.
- Figure out which of the output messages you need to print to console based on the average calculated.
You'll need to research how to format output, how to get input from user/keyboard using Scanner or BufferedReader, which data type to use in order to get the desired decimal output, and lastly a conditional check if you passed/failed based on average.
I know this is a few days old, but I hope you figured it out.