C++ CODE ONLY. Challenge Activity 5.8.2 Constructor Overloading Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0 User2: Minutes: 1000, Messages: 5000 #include using namespace std; class PhonePlan{ public: PhonePlan(); PhonePlan(int numMinutes, int numMessages); void Print() const; private: int freeMinutes; int freeMessages; }; PhonePlan::PhonePlan() { // Default constructor freeMinutes = 0; freeMessages = 0; } // FIXME: Create a second constructor with numMinutes and numMessages parameters. *********MISSING CODE GOES HERE. DO NOT CHANGE REST OF CODE PLEASE********************************8 void PhonePlan::Print() const { cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl; } int main() { PhonePlan user1Plan; // Calls default constructor PhonePlan user2Plan(1000, 5000); // Calls newly-created constructor cout << "User1: "; user1Plan.Print(); cout << "User2: "; user2Plan.Print(); return 0; }
C++ CODE ONLY.
Challenge Activity 5.8.2 Constructor Overloading
Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0 User2: Minutes: 1000, Messages: 5000
#include <iostream>
using namespace std;
class PhonePlan{
public:
PhonePlan();
PhonePlan(int numMinutes, int numMessages);
void Print() const;
private:
int freeMinutes;
int freeMessages;
};
PhonePlan::PhonePlan() { // Default constructor
freeMinutes = 0;
freeMessages = 0;
}
// FIXME: Create a second constructor with numMinutes and numMessages parameters.
*********MISSING CODE GOES HERE. DO NOT CHANGE REST OF CODE PLEASE********************************8
void PhonePlan::Print() const {
cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;
}
int main() {
PhonePlan user1Plan; // Calls default constructor
PhonePlan user2Plan(1000, 5000); // Calls newly-created constructor
cout << "User1: ";
user1Plan.Print();
cout << "User2: ";
user2Plan.Print();
return 0;
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)