Put the class definition in EV.h and the implementation of the constructors and functions in EV.cpp 1. Define a class called "EV", that represents the information of an electric vehicle. The EV is defined with these attributes: model (string), range(int), unit (string) and year (int). Functions of the EV class must perform the following operations: 1. A default constructor which sets all the numeric instance variables to zero. 2. A constructor with 4 parameters which sets the 4 instance variables to the corresponding values passed. 3. Implement a getter function for each of the 4 instance variables that will return the value of the instance variable. For example, the getX() function for the instance variable model must be called getModel(). 4. Implement a setter function for each instance variable that will assign to the instance variable to the value passed. For example, the setX() function for the instance variable model must be called setModel(). 5. An info function: this function print information of object as following format: "EV" (model) "manufactured in" [year] "has a range of+[range]+[unit] 6. A Convert function: This function converts the range from kilometers to miles and from miles to kilometers and returns the result. If the user enters "miles" for the unit and the range in kilometers, then this function must return the miles. As same if user enters "miles for the unit and the range in milles, it must return the kilometer value. Using the two equations below: miles kilometers kilometers miles 1.609 8.6214 Equation 1 Equation 2 7. A Compare function: This function has one input parameter which is a pointer to an EV object and prints a message according to following criteria: If the range of first object (the object that the Compare function is called from) is greater than second object (input parameter in Compore, the program prints: info of first object (using info function) new line "drives longer distance on a single charge than new line+ print info of second object of the range of first object is less than second object, the program prints: info of first object (using info function) new line "drives shorter distance on a single charge than new lineprint info of second object. of the range of first object is equal to second object, the program prints: info of first object new line "drives the same distance on a single charge as new line. print info of second object.
Put the class definition in EV.h and the implementation of the constructors and functions in EV.cpp 1. Define a class called "EV", that represents the information of an electric vehicle. The EV is defined with these attributes: model (string), range(int), unit (string) and year (int). Functions of the EV class must perform the following operations: 1. A default constructor which sets all the numeric instance variables to zero. 2. A constructor with 4 parameters which sets the 4 instance variables to the corresponding values passed. 3. Implement a getter function for each of the 4 instance variables that will return the value of the instance variable. For example, the getX() function for the instance variable model must be called getModel(). 4. Implement a setter function for each instance variable that will assign to the instance variable to the value passed. For example, the setX() function for the instance variable model must be called setModel(). 5. An info function: this function print information of object as following format: "EV" (model) "manufactured in" [year] "has a range of+[range]+[unit] 6. A Convert function: This function converts the range from kilometers to miles and from miles to kilometers and returns the result. If the user enters "miles" for the unit and the range in kilometers, then this function must return the miles. As same if user enters "miles for the unit and the range in milles, it must return the kilometer value. Using the two equations below: miles kilometers kilometers miles 1.609 8.6214 Equation 1 Equation 2 7. A Compare function: This function has one input parameter which is a pointer to an EV object and prints a message according to following criteria: If the range of first object (the object that the Compare function is called from) is greater than second object (input parameter in Compore, the program prints: info of first object (using info function) new line "drives longer distance on a single charge than new line+ print info of second object of the range of first object is less than second object, the program prints: info of first object (using info function) new line "drives shorter distance on a single charge than new lineprint info of second object. of the range of first object is equal to second object, the program prints: info of first object new line "drives the same distance on a single charge as new line. print info of second object.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Please read all the instructions. The output should be like in the 2nd picture and the green colored words should user inputs. Please show all the codes of EV_driver.cpp, EV.cpp, EV.h files + the 2 outputs.
Please give as pictures and also as text writing
Solution
by Bartleby Expert
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education