USING C# SHARP
Operate a New Car Dealership selling (Pick your favorite make of car – BMW, AUDI, Toyota, Honda, Ford, Lamborghini, etc.). In order to use accurate data, you will be visiting the dealer’s web site to get models, packages and prices. We will only be selling 2020 models and you should limit your choices to 3 models and 3 styles of each model. Other model selections should display the message “Coming Soon”
Display an initial screen asking the user which model they are interested in – below is Toyota as an example
WELCOME TO (YOURNAME) TOYOTA
1. Purchase a car
a. Avalon
b. Camry
i. L $24,425
ii. LE $24,970
iii. XLE $29,455
c. Corolla
i. LE $20,050
ii. XLE $24,050
iii. XSE $25,550
d. Highlander
e. Prius
f. RAV 4
Requirements:
After selecting a vehicle, and a style (trim Level) the user will be asked to select a Package. The Driver Assist Package (20% of the car’s base price), a Navigation Package (10% of the car’s base price), a Panoramic Glass Moonroof (5 % of the car’s base price) are available for all cars. A user can select 0 or more packages. There are only two (2) colors for each car (you pick the colors)
The sales report should display a list of cars sold, including which packages were selected, the price of the car, packages and total price paid (including 8.25% sales tax). We do not need who the people are, just the cars that were sold. In addition, the report should list the total cars sold and the total prices before and after tax.
This program must use functions for all the features and should load the data into an array as it is selected (this will make it easier to print out the daily sales report. You can choose to load the data into structures
Any C# Compiler
for example:
using System;
namespace Sample
{
class Test
{
public static void Main(string[] args)
{
Console.WriteLine(" ");
Console.WriteLine(" ");
Console.Write(" ");
Console.Write(" ");
}
}
}
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of