Ask Java Expert


Home >> Java

Part A
- Create a project and add to it a class MonthlyRecord. Give this class an instance variable for the name of the month and an array of doubles, moneyDaily which will be used to keep track of how much money was made or lost on that day. Note that in this case we are using the whole array, with an index for each day of the month, so this array won't need a firstEmpty to go with it.
- Add a default constructor that sets the month up as January with an array of the appropriate size. Also add accessor and mutator for the name.
- Add another constructor which takes as parameters a name and an int days, which tells how many days are in the month. Set up the array to be that size.
- Add a method transaction which takes two int parameters, daynum and amount. daynum is the day of the month, and amount is an amount of money made or lost for a transaction on that day. (hint: days of the month are numbered starting from 1, arrays arent; think about how to handle this).
Add the given amount to the value in moneyDaily for that day of the month, if it is a valid day (e.g. don't do anything if someone tries to add an amount the 31st if our month only has 28 days).
So if we did
myMonthRecord.transaction(5, 50); // made $50 in a transaction on the 5th
myMonthRecord.transaction(5, -70); // lost $70 in a transaction on the 5th
myMonthRecord.transaction(5, 10); // made $10 in a transaction on the 5th
then moneyDaily[4] would end up being 0 + 50 -70 +10 = -10
(0 was the initial value)
- Add a method total which returns a double, which is the sum of all the values in moneyDaily.
- Add a method inTheRed which returns a boolean that is true if the current total for the month is negative (call total to find this out).
- Add a toString which returns the name of the month, the total for the month, and then the list of all values for each day in the month, so something like
June Total: $27.80
1. 0
2. 33.95
3. -2.50
4. 20.02
5. 99.55
...etc...You will need to create a temporary String variable, and use a loop to add the values from the array onto the end of the string. remember that "n" is a newline in a string.

Part B
- Add a class with a main. In your main, check that you can create MonthRecords with both constructors, and then print the MonthRecords back out.
- Create a new MonthRecord representing March.

In a loop, for each of the 31 days of March, randomly choose a number from -100 to 100 (inclusive) to be an amount earned that day and call earned for your MonthRecord for March accordingly.

Print the MonthRecord for March. If at the end of March we ended up in the red -- owing money -- print out a sad message, otherwise print a happy message.

Java, Programming

  • Category:- Java
  • Reference No.:- M92394930
  • Price:- $15

Priced at Now at $15, Verified Solution

Have any Question?


Related Questions in Java

Chatbotscreate a small networked chat application that is

Chatbots Create a small, networked chat application that is populated by bots. Introduction On an old server park, filled with applications from the early days of the internet, a few servers still run one of the earliest ...

Assignment taskwrite a java console application that allows

Assignment task Write a java console application that allows the user to read, validate, store, display, sort and search data such as flight departure city (String), flight number (integer), flight distance (integer), fl ...

Assignment game prototypeoverviewfor this assessment task

Assignment: Game Prototype Overview For this assessment task you are expected to construct a prototype level/area as a "proof of concept" for the game that you have designed in Assignment 1. The prototype should function ...

Assignment taskwrite a java console application that allows

Assignment task Write a java console application that allows the user to read, validate, store, display, sort and search data such as flight departure city (String), flight number (integer), flight distance (integer), fl ...

In relation to javaa what is constructor the purpose of

(In relation to Java) A. What is constructor? the purpose of default constructor? B. How do you get a copy of the object but not the reference of the object? C. What are static variables and instance variables? D. Compar ...

Project descriptionwrite a java program to traverse a

Project Description: Write a java program to traverse a directory structure (DirWalker.java) of csv files that contain csv files with customer info. A simple sample in provided in with the sample code but you MUST will r ...

Fundamentals of operating systems and java

Fundamentals of Operating Systems and Java Programming Purpose of the assessment (with ULO Mapping) This assignment assesses the following Unit Learning Outcomes; students should be able to demonstrate their achievements ...

Assessment -java program using array of Assessment -JAVA Program using array of objects

Assessment -JAVA Program using array of objects Objectives This assessment item relates to the course learning outcomes as stated in the Unit Profile. Details For this assignment, you are required to develop a Windowed G ...

Applied software engineering assignment 1 -learning

Applied Software Engineering Assignment 1 - Learning outcomes - 1. Understand the notion of software engineering and why it is important. 2. Analyse the risk factors associated with phases of the software development lif ...

Retail price calculatorwrite a java program that asks the

Retail Price Calculator Write a JAVA program that asks the user to enter an item's wholesale cost and its markup percentage. It should then display the item's retail price. For example: (If an item's wholesale cost is 5. ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As