CIS355A iLab Week 1 SalesTracking Java Program

$ 12

CIS355A Week 1 iLab SalesTracking Java Program

Program files for the sales tracking program: SalesTracking.java

At the beginning of all your programs, put a comment box that includes the program name, your name, and a brief description of the program.
Example:
/***********************************************************************
Program Name: ProgramName.java
Programmer’s Name: Student Name
Program Description: Describe here what this program will do
***********************************************************************/

How to submit your assignment:
The program must have the same name as the assignment title (SalesTracking.java).
The Java source file (*.java) must include a corresponding class file (*.class) program as evidence of success.
In addition to the program source code file and byte code file, put your program source code file and screen shots of your program output files into a Word document.
You must use a zipped folder to send your weekly assignment to the Dropbox. Do not send subfolders within your zipped folder. Place all of the .java and .class file for the week into the one zipped folder. The zip folder should be named CIS355A_YourLastName_iLab_Week1, and this zip folder will contain all the weekly programming assignments.

iLAB STEPS
STEP 1: SalesTracking.java
You must create a sales tracking program named SalesTracking.java. This program must track monthly sales as well as compute average yearly sales, total sales for the year, and which month had the highest sales and which month had the lowest sales.
The program should prompt the user for the sales for each month starting with January. After all the monthly sales have been entered, your program should have methods that do the following.
getSales(): This method prompts the users for the sale for each month. The return value for this method will be the amount that the user entered. This amount should be stored and returned into the corresponding location in the monthlySales array. For example, January sales should be stored in the first location, February sales should be stored in the second location, and so forth. This method should be enclosed in a loop to facilitate this process.
computeTotalSales(monthlySales): This method receives the monthly sales array as an argument and returns the total sales of the year.
computeAverageSales(monthlySales): This method receives the monthly sales array as an argument and returns the average sales for the year.
computeHighestMonth(monthlySales): This method receives the monthly sales array as an argument. This method will search and compare the values of the monthly sales array for the highest value. Once the highest value has been determined, it will store the value in the value that corresponds with the index of that month. The method will return the index of the month with the highest value.
computeLowestMonth(monthlySales): This method receives the monthly sales array as an argument. This method will search and compare the values of the monthly sales array for the lowest value. Once the lowest value has been determined, it will store the value in the value that corresponds with the index of that month. The method will return the index of the month with the lowest value.
displaySaleInfo(totalSales, averageSales, highestMonth, highestSales, lowestMonth, lowestSales): This method will receive the total yearly sales, average monthly sale, the month with the highest sales, as well as the sales for that month and the month with the lowest sales. This method will display all of the data it received as arguments.
All methods must be called from the main method. Sales amounts should be rounded to two decimal places. You should use parallel arrays. Your first array (monthArray) should be initialized with all of the months. This array should have 12 locations of course. Your other array should be named monthlySales. Like your monthArray, this array should be 12 locations and be populated with the getSales( ) method.
Your monthArray should have the following values.
monthArray

JANUARY FEBRUARY MARCH ….. ….. ….. NOVEMBER DECEMBER
You should demonstrate the use of loop and decision structures also. Use the lab forum to ask questions about this lab.
SalesTacking Points Description
Standard header included 1 Must contain program’s name, student name, and description of the program
Program compiles 2 Program does not have any error
Declaration of variables 4 Declare needed variables
Program executes 3 Program runs without any error
Use of decision statement(s) 5 Implement decision statements correctly
Use of loop statement(s) 5 Implement loop statements correctly
Use of methods 15 Implement all methods correctly
Use of arrays 5 Implement arrays correctly
Subtotal 40

47 in stock

SKU: CIS355AILAB1N Category:

Description

CIS355A Week 1 iLab SalesTracking Java Program

Program files for the sales tracking program: SalesTracking.java

At the beginning of all your programs, put a comment box that includes the program name, your name, and a brief description of the program.
Example:
/***********************************************************************
Program Name: ProgramName.java
Programmer’s Name: Student Name
Program Description: Describe here what this program will do
***********************************************************************/

How to submit your assignment:
The program must have the same name as the assignment title (SalesTracking.java).
The Java source file (*.java) must include a corresponding class file (*.class) program as evidence of success.
In addition to the program source code file and byte code file, put your program source code file and screen shots of your program output files into a Word document.
You must use a zipped folder to send your weekly assignment to the Dropbox. Do not send subfolders within your zipped folder. Place all of the .java and .class file for the week into the one zipped folder. The zip folder should be named CIS355A_YourLastName_iLab_Week1, and this zip folder will contain all the weekly programming assignments.

iLAB STEPS
STEP 1: SalesTracking.java
You must create a sales tracking program named SalesTracking.java. This program must track monthly sales as well as compute average yearly sales, total sales for the year, and which month had the highest sales and which month had the lowest sales.
The program should prompt the user for the sales for each month starting with January. After all the monthly sales have been entered, your program should have methods that do the following.
getSales(): This method prompts the users for the sale for each month. The return value for this method will be the amount that the user entered. This amount should be stored and returned into the corresponding location in the monthlySales array. For example, January sales should be stored in the first location, February sales should be stored in the second location, and so forth. This method should be enclosed in a loop to facilitate this process.
computeTotalSales(monthlySales): This method receives the monthly sales array as an argument and returns the total sales of the year.
computeAverageSales(monthlySales): This method receives the monthly sales array as an argument and returns the average sales for the year.
computeHighestMonth(monthlySales): This method receives the monthly sales array as an argument. This method will search and compare the values of the monthly sales array for the highest value. Once the highest value has been determined, it will store the value in the value that corresponds with the index of that month. The method will return the index of the month with the highest value.
computeLowestMonth(monthlySales): This method receives the monthly sales array as an argument. This method will search and compare the values of the monthly sales array for the lowest value. Once the lowest value has been determined, it will store the value in the value that corresponds with the index of that month. The method will return the index of the month with the lowest value.
displaySaleInfo(totalSales, averageSales, highestMonth, highestSales, lowestMonth, lowestSales): This method will receive the total yearly sales, average monthly sale, the month with the highest sales, as well as the sales for that month and the month with the lowest sales. This method will display all of the data it received as arguments.
All methods must be called from the main method. Sales amounts should be rounded to two decimal places. You should use parallel arrays. Your first array (monthArray) should be initialized with all of the months. This array should have 12 locations of course. Your other array should be named monthlySales. Like your monthArray, this array should be 12 locations and be populated with the getSales( ) method.
Your monthArray should have the following values.
monthArray

JANUARY FEBRUARY MARCH ….. ….. ….. NOVEMBER DECEMBER
You should demonstrate the use of loop and decision structures also. Use the lab forum to ask questions about this lab.
SalesTacking Points Description
Standard header included 1 Must contain program’s name, student name, and description of the program
Program compiles 2 Program does not have any error
Declaration of variables 4 Declare needed variables
Program executes 3 Program runs without any error
Use of decision statement(s) 5 Implement decision statements correctly
Use of loop statement(s) 5 Implement loop statements correctly
Use of methods 15 Implement all methods correctly
Use of arrays 5 Implement arrays correctly
Subtotal 40

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.