Answered step by step
Verified Expert Solution
Link Copied!

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
image text in transcribed
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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Flash XML Applications Use AS2 And AS3 To Create Photo Galleries Menus And Databases

Authors: Joachim Schnier

1st Edition

0240809173, 978-0240809175

More Books

Students also viewed these Databases questions