Before you start writing your program:
For your own use, create a development plan, especially an algorithm of what you need to include in your program. I suggest you write code for one task at a time and get it working before starting another.
Program:
Analyze the statistics from the Auburn women’s 2012 softball season through March 25. Use data given in data06.xls.
• Create a report and bar graph of the opponents’ and Auburn’s total points for each game.
• Create a report and plot of the opponents’ and Auburn’s total points for each inning.
• Display Auburn’s season record: win-loss
• Compare the points in each game after four (4) innings of play. Find and display the number of game where Auburn lead, trailed, and tied.
General Instructions:
• Insert comments at the top and throughout each file
o Include the follow comments at the beginning of this (and ALL) files.
% your name
% assignment number
% date you completed the assignment
% a short narrative about what the file does
o Use the algorithm as comments throughout each file
o Use blank line and section comments to group work for each of the four tasks listed above.
• Use descriptive variable names.
• Save the name of the data file as a CONSTANT.
• Use Sample Input/Output as a guide.
o Make sure the data file is there before proceeding with your program.
o All the numeric data from the spread sheet will be in a large matrix. I suggest that you pull out the points for opponents and Auburn into two matrices for the analysis tasks.
o You DO NOT KNOW the number of games.
o You DO KNOW:
there are a max of 9 innings per game
the opponents’ points start in column 4
Auburn’s points start in column 13
o Replace all non-numbers in the scores with zeros.
• Use find() to find to compare the points after four (4) innings.
o length() will be helpful, too.
• Label report output and graphs as shown in the output example below.
o Use fprintf() for printing.
o Print column numbers right-aligned.
• Indent all blocks.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme