Giter VIP home page Giter VIP logo

bell-kevin / usedcarautolot Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 393 KB

In this project, simulate a used car auto lot. There are 3 types of vehicles – cars, trucks, and another one that you choose. For these instructions, that choice is a Minivan – you may use that or select another type of vehicle. The output from this project will first list all of the inventory, then ask the user what type of car they are interested. It will display all of the vehicles that match the user's choice.

License: GNU Affero General Public License v3.0

Java 100.00%
car truck van davis-tech davis-technical-college utah shopping

usedcarautolot's Introduction

UsedCarAutoLot

Chapter 14 Example Project

Davis Technical College

In this project, simulate a used car auto Lot. There are 3 types of vehicles – cars, trucks, and another one that you choose. For these instructions, that choice is a Minivan – you may use that or select another type of vehicle. The output from this project will first list all of the inventory, then ask the user what type of car they are interested. It will display all of the vehicles that match the user's choice.

car

Notice the similarities between the types of vehicles. All have an inventory number, like 12345, a year, make, model, color, and mileage. Then there are differences. All cars have number of doors and whether or not they have tinted windows. All trucks have bed length and whether or not they have a bed liner. All minivans have number of sliding doors and whether or not they have an entertainment center.

truck

All of these vehicles have many similar characteristics, so use a Vehicle class for those shared characteristics. The Car, Truck, and Minivan classes inherit those characteristics as well as including at least 2 others that are specific to each class.

-Vehicle class instance variables: inventory ID, make, model, color, year, and mileage -Car class additional instance variables: number of doors, tinted windows (Boolean) -Truck class additional instance variables: bed length, bedliner (Boolean) -Minivan class additional instance variables: number of sliding doors, entertainment center (Boolean) – remember, this is your choice of vehicle type, this Minivan is just an example

In the Vehicle class, include a display method that returns a String that lists all the common variables. In each of the child classes, include display methods that call the super class display method and add to that String with the specific instance variables for that type of vehicle.

van

In the driver code, create an Array List that holds the data for all of the vehicles on the lot. Remember that if an Array List is declared with the type of a super class, it can contain instances of all the child types. Instantiate at least 2 of each type of vehicle, but each type of vehicle must have a different number of objects. In the example, there are 4 cars, 2 trucks and 3 minivans, for example. You will hard-code those instantiations in the driver code. When you add them to the Array List, do not put them in vehicle order -- that is, don't put all the cars together, then all the trucks, then minivans. Mix them up. Look at the examples above, where you see car, minivan, car truck, car, car, etc.

bad input

Use a For-Each loop to go through the Array List and display all of the inventory of the auto lot. Using the "instanceof" operator, determine the type of the vehicle to be able to put the identifying word at the beginning of the output for the display. That is, if the vehicle is an instance of "car", then the display starts with "Car", followed by the ID number, year, color, make, model, and so on -- look at the examples above to see how to put the string together.

After displaying the inventory, ask the user what type of vehicle they want to see. Accept upper- or lowercase letters to select the type of vehicle. Use another For-Each loop to check if the vehicle is an instance of that selected type of vehicle. For example, if the user selected "c" for Car, in the For-Each loop, check if the individual object is an instance of a car, and if it is, display it; if not, don't do anything with it.

Notes:

-You must use a For-Each loop to display all of the vehicles in the Array List with the correct first word for the type of car. -Notice the foot marker for the length of the truck bed in the output, be sure to include it. -You must have different numbers of each type of vehicle (like 4 cars, 2 trucks, 3 minivans). -You must add the objects to the array list in jumbled order, not all cars together, then all trucks, etc. -- mix them up when adding them to the array list.

Run the project 3 times, asking for each of the different types of vehicles, and take a screenshot of the result, like the examples above. Take screenshots of the code.

bonusLoop

Submission:the specified screenshots and the root folder for the project

Pay careful attention to the rubric for this assignment.

Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero.

Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

== We're Using GitHub Under Protest ==

This project is currently hosted on GitHub. This is not ideal; GitHub is a proprietary, trade-secret system that is not Free and Open Souce Software (FOSS). We are deeply concerned about using a proprietary system like GitHub to develop our FOSS project. I have a website where the project contributors are actively discussing how we can move away from GitHub in the long term. We urge you to read about the Give up GitHub campaign from the Software Freedom Conservancy to understand some of the reasons why GitHub is not a good place to host FOSS projects.

If you are a contributor who personally has already quit using GitHub, please email me for how to send us contributions without using GitHub directly.

Any use of this project's code by GitHub Copilot, past or present, is done without our permission. We do not consent to GitHub's use of this project's code in Copilot.

Logo of the GiveUpGitHub campaign

usedcarautolot's People

Contributors

bell-kevin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.