Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

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

Assessment instructionsin this assessment you will design

Assessment Instructions In this assessment, you will design and code a simple Java application that defines a class, instantiate the class into a number of objects, and prints out the attributes of these objects in a spe ...

Assessment instructionsin this assessment you will complete

Assessment Instructions In this assessment, you will complete the programming of two Java class methods in a console application that registers students for courses in a term of study. The application is written using th ...

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 ...

Assessment database and multithread programmingtasktask 1

Assessment: Database and Multithread Programming Task Task 1: Grade Processing University grading system maintains a database called "GradeProcessing" that contains number of tables to store, retrieve and manipulate stud ...

Question slideshows or carousels are very popular in

Question : Slideshows (or carousels) are very popular in websites. They allow web developers to display news or images on the website in limited space. In this code challenge, you are required to complete the JavaScript ...

Assessment socket programmingtaskwrite a java gui program

Assessment: Socket Programming Task Write a JAVA GUI program that would facilitate text chatting/exchanging between two or multiple computers over the network/internet, using the concept of JAVA socket programming. If yo ...

Assessment socket programmingtaskwrite a java gui program

Assessment: Socket Programming Task Write a JAVA GUI program that would facilitate text chatting/exchanging between two or multiple computers over the network/internet, using the concept of JAVA socket programming. If yo ...

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. ...

Overviewyou are required to use java se 80 and javafx to

Overview You are required to use Java SE 8.0 and JavaFX to develop a Graphical User Interface (GUI) for the FlexiRent rental property management program created in Assignment 1. This assignment is designed to help you: 1 ...

  • 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