Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java Objective To learn how to use a simple for loop construct. Assignment Read in an integer from the user, then read in that many
Java
Objective To learn how to use a simple for loop construct. Assignment Read in an integer from the user, then read in that many integer grades. Finally, print out the average of the grades you read in. Implementation You should not store the grades and then average them. You can compute the average as you read the grades in. You should keeping a running sum of the grades as you read them and then divide it by the number of grades at the end. Beware: Dividing an int by an int yields an int, so you will want to use or cast to double Sample Output Enter number of grades to be averaged: 5 Enter grade 1: 4 Enter grade 2: 5 Enter grade 3: 6 Enter grade 4: 7 Enter grade 5: 8 The average grade is 6.0 Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started