Chat with us, powered by LiveChat C++ - EssayAbode

C++

 Write a program to calculate a bowling league's average bowling scores. You will need to read the input data from the file"BowlingScore.txt" 

  • ou must use three arrays:
    • a one-dimensional array to store the bowler's names.
    • a (parallel) two-dimensional array to store the bowling scores.
    • a one-dimensional array to store the bowler's average score.
  • Your program must contain at least the following functions:
    • a function called GetBowlingData to read and store data into two arrays. The function should take as input parameters the file name and both empty arrays, which it should fill from the file "BowlingScore.txt"
    • return a status of either success or failure (i.e true or false). 
    • a function called GetAverageScore that is used to calculate the average bowling score. The function should take as input the populated arrays and return the average score of each bowler in a separate array.
    • a function called PrettyPrintResults to output the results, i.e. bowler name, scores and average.
  • Don't use Vectors or any other newfangled container, use only old school C arrays like in the book.
  • Use repetition structures (loops) in your functions to perform calculations and printing. Remember "dimensions = loops". So a 2 dimensional array will require 2 loops to completely iterate over all of the elements in the array.
  • And as always, don't use magic numbers. Instead use global constants at the top of the program under the includes.

Related Tags

Academic APA Assignment Business Capstone College Conclusion Course Day Discussion Double Spaced Essay English Finance General Graduate History Information Justify Literature Management Market Masters Math Minimum MLA Nursing Organizational Outline Pages Paper Presentation Questions Questionnaire Reference Response Response School Subject Slides Sources Student Support Times New Roman Title Topics Word Write Writing