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.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 7SA: Assume the definition of class foodType as given in Exercise 6. Answer the following questions? (1,...
icon
Related questions
Question
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 miles, it must return the kilometer value. Using the two equations below:
miles kilometers 1.609
kilometers miles
0.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 lineprint 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 line print 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.
Transcribed Image Text: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 miles, it must return the kilometer value. Using the two equations below: miles kilometers 1.609 kilometers miles 0.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 lineprint 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 line print 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.
Driver Class (EV_driver.cpp)
Create a file EV_driver.cpp with the main function that asks the user to enter the information of two EV
objects and it dynamically creates two objects of type EV. Then, using Convert, Info and Compare
functions, the following results are displayed: (Text in green is user input)
Load first EV
Enter EV Model: Tesla Model 3.
Enter year manufactured: 2019.
Enter range unit (Miles or Kilometers): Kilometers.
You choose Kilometers, so please enter range in kilometers: 488.
Load second EV
Enter EV Model: Model Y.
Enter year manufactured: 2021.
Enter range unit (Miles or Kilometers): Miles.
You choose Miles, so please enter range in miles: 300.
The EV Tesla Model 3 manufactured in 2019 has a range of 400 kilometers
drives shorter distance on a single charge than
The EV Tesla Model Y manufactured in 2021 has a range of 300 miles
Load first EV
Enter EV Model: Tesla Model S.
Enter year manufactured: 2021.
Enter range unit (Miles or Kilometers): Miles.
You choose Miles, so please enter range in miles: 428.
Load second EV
Enter EV Model: Tesla Model 3.
Enter year manufactured: 2021.
Enter range unit (Miles or Kilometers): Kilometers.
You choose Kilometers, so please enter range in kilometers: 576.
The EV Tesla Model S manufactured in 2021 has a range of 420 miles
drives longer distance on a single charge than
The EV Tesla Model 3 manufactured in 2021 has a range of 576 kilometers
Note 1: You are to expect a perfect user who will always enter valid values; that is, do not verify the
validity of user input.
Note 2: Please note that you are supposed to use the pointers at different parts of the lab question. If
you use different methods, even if your program works you do not get any mark
Transcribed Image Text:Driver Class (EV_driver.cpp) Create a file EV_driver.cpp with the main function that asks the user to enter the information of two EV objects and it dynamically creates two objects of type EV. Then, using Convert, Info and Compare functions, the following results are displayed: (Text in green is user input) Load first EV Enter EV Model: Tesla Model 3. Enter year manufactured: 2019. Enter range unit (Miles or Kilometers): Kilometers. You choose Kilometers, so please enter range in kilometers: 488. Load second EV Enter EV Model: Model Y. Enter year manufactured: 2021. Enter range unit (Miles or Kilometers): Miles. You choose Miles, so please enter range in miles: 300. The EV Tesla Model 3 manufactured in 2019 has a range of 400 kilometers drives shorter distance on a single charge than The EV Tesla Model Y manufactured in 2021 has a range of 300 miles Load first EV Enter EV Model: Tesla Model S. Enter year manufactured: 2021. Enter range unit (Miles or Kilometers): Miles. You choose Miles, so please enter range in miles: 428. Load second EV Enter EV Model: Tesla Model 3. Enter year manufactured: 2021. Enter range unit (Miles or Kilometers): Kilometers. You choose Kilometers, so please enter range in kilometers: 576. The EV Tesla Model S manufactured in 2021 has a range of 420 miles drives longer distance on a single charge than The EV Tesla Model 3 manufactured in 2021 has a range of 576 kilometers Note 1: You are to expect a perfect user who will always enter valid values; that is, do not verify the validity of user input. Note 2: Please note that you are supposed to use the pointers at different parts of the lab question. If you use different methods, even if your program works you do not get any mark
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
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 

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). Func-
tions 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"
Transcribed Image Text: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). Func- tions 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"
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 miles, it must return the kilo-
meter value. Using the two equations below:
miles - kilometers *1.609
kilometers miles* 0.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:
o If the range of first object (the object that the Compare function is called from) is
greater than second object (input parameter in Compare, 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.
o If 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 line + print info of second object.
o If 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.
Driver Class (EV_driver.cpp)
Create a file EV_driver.cpp with the main function that asks the user to enter the infor-
mation of two EV objects and it dynamically creates two objects of type EV. Then, using
Convert, Info and Compare functions, the following results are displayed: (Text in
green is user input)
Load first EV
Enter EV Model: Tesla Model 3J
Enter year manufactured: 2019J
Enter range unit (Miles or Kilometers) : Kilometers
You choose Kilometers, so please enter range in kilometers: 400J
Load second EV
Enter EV Model: Model YJ
Enter year manufactured: 2021J
Enter range unit (Miles or Kilometers): Miles
You choose Miles, so please enter range in miles: 300.
The EV Tesla Model 3 manufactured in 2019 has a range of 400 kilometers
drives shorter distance on a single charge than
-1- MaL-1v--
L--
Load first EV
Enter EV Model: Tesla Model SJ
Enter year manufactured: 2021J
Enter range unit (Miles or Kilometers): Miles.
You choose Miles, so please enter range in miles: 420
Load second EV
Enter EV Model: Tesla Model 3J
Enter year manufactured: 2021J
Enter range unit (Miles or Kilometers): Kilometers.
You choose Kilometers, so please enter range in kilometers: 576.J
The EV Tesla Model S manufactured in 2021 has a range of 420 miles
drives longer distance on a single charge than
The EV Tesla Model 3 manufactured in 2021 has a range of 576 kilometers
Note 1: You are to expect a perfect user who will always enter valid values; that is, do
not verify the validity of user input.
Note 2: Please note that you are supposed to use the pointers at different parts of the
Transcribed Image Text: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 miles, it must return the kilo- meter value. Using the two equations below: miles - kilometers *1.609 kilometers miles* 0.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: o If the range of first object (the object that the Compare function is called from) is greater than second object (input parameter in Compare, 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. o If 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 line + print info of second object. o If 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. Driver Class (EV_driver.cpp) Create a file EV_driver.cpp with the main function that asks the user to enter the infor- mation of two EV objects and it dynamically creates two objects of type EV. Then, using Convert, Info and Compare functions, the following results are displayed: (Text in green is user input) Load first EV Enter EV Model: Tesla Model 3J Enter year manufactured: 2019J Enter range unit (Miles or Kilometers) : Kilometers You choose Kilometers, so please enter range in kilometers: 400J Load second EV Enter EV Model: Model YJ Enter year manufactured: 2021J Enter range unit (Miles or Kilometers): Miles You choose Miles, so please enter range in miles: 300. The EV Tesla Model 3 manufactured in 2019 has a range of 400 kilometers drives shorter distance on a single charge than -1- MaL-1v-- L-- Load first EV Enter EV Model: Tesla Model SJ Enter year manufactured: 2021J Enter range unit (Miles or Kilometers): Miles. You choose Miles, so please enter range in miles: 420 Load second EV Enter EV Model: Tesla Model 3J Enter year manufactured: 2021J Enter range unit (Miles or Kilometers): Kilometers. You choose Kilometers, so please enter range in kilometers: 576.J The EV Tesla Model S manufactured in 2021 has a range of 420 miles drives longer distance on a single charge than The EV Tesla Model 3 manufactured in 2021 has a range of 576 kilometers Note 1: You are to expect a perfect user who will always enter valid values; that is, do not verify the validity of user input. Note 2: Please note that you are supposed to use the pointers at different parts of the
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Software Development
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr