1. Write a Visual Studio 2012 C# Console App that manages car information
2. Below is a sample interface of a CAR MANAGER app.
- <<...... >> are instructions you should program
- Other characters (in red) are messages you should display in the monitor.
- You may assume that a user will enter only valid characters, e.g., a user will enter only numbers for the miles ran.
3. You should create a class for the car information management, and all the information should be saved and accessed to/from the class. You cannot use any variables for the information storing purpose in the Main method.
4. Place your name as a comment in your code
*****************************
* *
* WELCOME TO CAR MANAGER *
* By << show your name >> *
* *
*****************************
<>
Enter # of Wheels of a car: << get input from keyboard on the same line>>
Enter the color of the car: << get input from keyboard on the same line>>
Current Mileage will be set Zero.
The starting CAR POINT is 100000 pts.
<>
<< Place three space characters here>>===>The current status of your car: <>Wheels,<>, <>miles, and CAR POINT= << show the CAR POINT of this car>>.
<>
Enter owner's name: << get input from keyboard on the same line>>
<>
Enter the miles the car ran in this week: << get input from keyboard on the same line. Enter a number more than 50>>
<< Calculate a new CAR POINT and Save it to an attribute in your class for car management >>
<>
<>
<< Place three space characters here>>===>This car is owned by <>.
<< Place three space characters here>>===>The current status of your car: <>Wheels,<>, <>miles, and CAR POINT= << show the CAR POINT of this car>>.
************ Thank you for using CAR MANAGER *************
<>
Press ENTER to close console.......
<>