CSC 171 - Introduction to Structured Programming

Assignment #6 - Finding out the batting averages for the starting line-up

Due Monday, October 2, 2023

The manager of the New York Mets know how many times his starting line-up has gone to bat. He even knows how many hits they each have. But he doesn't know their batting averages (explains a lot about this season, wouldn't you say?).

Your program will read in the number of times at bat and the number of hits for nine (9) players. Then you will calculate the batting average using the formula:

Batting Average = Hits / At Bats

After you calculate the batting average for each player, print his hits, at bats and batting average. Batting Average should be between 0 and 1 and printed to 3 decimal places.

Submit your pseudocode, flow chart, source code and a run of the program

[Back to the Assignments List]