Proper coding conventions required the first letter of class

Assignment Help JAVA Programming
Reference no: EM13896121

The files must be called <LastInitialFirstInitialUnit7.java> (driver)

<LastInitialFirstInitialHouse.java> (handles house variables and methods) 

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.Only submit the .java files needed to make the program run. Do not submit the .class file or any other file.

Basic Requirements Write a driver and house class that gets input and using method call chaining creates 2 houses and outputs the results

LiFiUnit7.java

Provide a driver class that demonstrates this house class. You are to use the main method provided below exactly with the exception of the class name for house, follow the naming convention outlined above.

public static void main(String [] args)

{

Scanner stdIn = new Scanner(System.in); LiFiHouse house1, house2; //New horses 

//Create house 1 using default constructor house1 = new LiFiHouse();

house1.print(); //print house 1 with default values

String street, city, state, zipCode; int number;

System.out.println("House 1 Information"); System.out.print("Please enter house number: "); number = stdIn.nextInt();

stdIn.nextLine(); System.out.print("Please enter Street: "); street = stdIn.nextLine(); System.out.print("Please enter City: "); city = stdIn.nextLine(); System.out.print("Please enter State: "); state = stdIn.nextLine();

System.out.print("Please enter ZipCode: "); zipCode = stdIn.nextLine(); System.out.println();

 

//use method call chaining to set values

//and print results for house 1 house1.setNumber(number).setStreet(street)

.setCity(city).setState(state).setZipCode(zipCode).print();

System.out.println("House 2 Information"); System.out.print("Please enter house number: "); number = stdIn.nextInt();

stdIn.nextLine(); System.out.print("Please enter Street: "); street = stdIn.nextLine(); System.out.print("Please enter City: "); city = stdIn.nextLine(); System.out.print("Please enter State: "); state = stdIn.nextLine();

System.out.print("Please enter ZipCode: "); zipCode = stdIn.nextLine(); System.out.println();

//create house 2 using 5 parameter constructor

house2 = new LiFiHouse(number, street, city, state, zipCode);

//print house 2 house2.print();

}

This demonstration driver does not call all accessor and mutator methods but it is normal to create them regardless of an immediate use. They may be needed in the future.

 

Sample output is provided below. Be sure to mimic it exactly except for values entered.

LiFiHouse.java 

Write a House class called LiFiHouse.java that implements the following methods

·         setNumber – receives the house number

·         setStreet – receives the street name

·         setCity – receives the city name

·         setState – receives the state name

 

·         setZipCode – receives the zip code

Separate accessor methods for each instance variable utilized. 

 

Pay attention to implement method call chaining as prescribed in the main method given.

Reference no: EM13896121

Questions Cloud

Summarize the research theory framework : Summarize the research theory framework. List the research questions and the study's purpose.
Aca codes of ethics and consultation : What resources, other than the ACA Codes of Ethics and consultation with peers, can counsellors use to resolve ethical dilemmas they encounter in their work with minors?
How can you ?nd the t value : Find the t value for 5, 2.5, and 0.5% of the area within each tail for a sample size, n, that is very large or in?nite. How do these t values compare with their corresponding z values?
Brooks co. purchases various investments in trading : Brooks Co. purchases various investments in trading securities at a cost of $ 66,000 on December 27, 2013. (This is its first and only purchase of such securities.) At December 31, 2013, these securities had a fair value of $ 72,000.
Proper coding conventions required the first letter of class : The files must be called  (driver) (handles house variables and methods) Proper coding conventions required the first letter of the class start with a capital letter
Is the information contained in the articles reliable? : Is the information contained in the articles reliable? Explain
What does the result of part a tell us : A random sample of 64 with a mean of 50 and a standard deviation of 20 is taken from a population of 800. Find an interval estimate for the population mean such that we are 95% con?dent that the interval includes the population mean.
What is the main advantage of assessing the welfare impact : What is the main advantage of assessing the welfare impact of a merger by looking at its ‘external effect'? Explain in words the condition under which this external effect is positive.
Compute overall scale factors by raising the scale factor : Finally it needs functions to return whether an animation is in progress and one to return the current step of the animation. Those functions will need to be called by the Transformation class and the Scaling class must must be modified so the the ..

Reviews

Write a Review

JAVA Programming Questions & Answers

  The burn and distance traveled

The Burn and distance traveled and the "meters to go" should appear on two lines as shown in the sample output. Note that this print should be done within the while loop.

  Class should have a method that returns the average

Write a class named TestScores. The class constructor should accept an array of test scores as its arguments. The class should have a method that returns the average of the test scores.

  Your program should ask the user to input a grade

Your program should ask the user to input a grade (integer from 1-100) and then output the letter grade.

  Calculates the total annual compensation of a salesperson

calculates the total annual compensation of a salesperson

  Calculates the total at the end

Make a program that asks the user how much change they have and then calculates the total at the end.

  Calculate rental fee for different types of borrowable media

Assume that there is an abstract class called Vehicle, which has two concrete subclasses, Car and Truck. There is also an interface Loadable, which only Truck implements - calculate a rental fee for different types of borrowable media (e.g. books,..

  Write a java program and pseudocode to read a number

Write a java program and pseudocode to read a number up to 15 digits long or a date (dd/mm/yyyy). The program should distinguish numbers from input date, and prints them in alphabetic spelling form

  Develop a java application for the local library

You have been requested to develop a Java application for the local library as part of an upgrade initiative. As in all libraries, this is a place where one can check out books

  Write a program that reads in the file

Write a program that reads in the file and exports it to a standard CSV format. For the records above, the output format would be Freddy Kruger, 1313 Mockingbird Lane, Houston, Texas Billy Thornton, 1010 Slingblade Street, Houston, Texas

  Constructor that initializes the three automatic properties

Create a class called Date that adds three pieces of information as automatic properties-a   month (type int), a day (type int) and a year (type int).

  Java program by array

Write a program that reads in a file that contains one integer per line. Each integer represents one location in the image. Assume that there are 64 rows and 64 columns in the image

  Compute the area of the triangle

Compute the area of the triangle using Heron's Formula(below), in which s represents half of the perimeter of the triangle, and a,b, and c, represent the length of the three sides.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd