Question: 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
 Java Objective To learn how to use a simple for loop

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!