#include using namespace std; class PhonePlan{ public: }; PhonePlan(); PhonePlan(int numMinutes, int numMessages); void Print() const; private: int int } PhonePlan:: PhonePlan() { freeMinutes = 0; freeMessages = 0; freeMinutes; freeMessages; } // FIXME: Create a second constructor with numMinutes and numMessages parameters. /* Your solution goes here */ void PhonePlan::Print() const { cout << "Minutes: " << freeMinutes << ", Messages: << freeMessages << endl; } int main() { PhonePlan user1Plan; PhonePlan user2Plan (1000, 5000); cout << "User1: "; user1Plan.Print(); // Default constructor cout << "User2: "; user2Plan. Print(); return 0; // Calls default constructor // Calls newly-created constructor

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

C++

CHALLENGE ACTIVITY
7.11.2: Constructor overloading.
 
Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0 User2: Minutes: 1000, Messages: 5000
 
1 #include <iostream>
2 using namespace std;
4 class PhonePlan{
public:
JSSENT
3
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
};
PhonePlan();
PhonePlan(int numMinutes, int numMessages);
Print () const;
void
private:
int
int
PhonePlan: : PhonePlan() {
freeMinutes = 0;
freeMessages
= 0;
}
}
int main() {
freeMinutes;
freeMessages;
}
// FIXME: Create a second constructor with numMinutes and numMessages parameters.
/* Your solution goes here */
void PhonePlan::Print() const {
cout << "Minutes: " << freeMinutes <<
PhonePlan user1Plan;
PhonePlan user2Plan(1000, 5000);
cout << "User1: ";
user1Plan.Print();
// Default constructor
cout << "User2: ";
user2Plan. Print ();
return 0;
', Messages: << freeMessages << endl;
// Calls default constructor
// Calls newly-created constructor
CPP
Transcribed Image Text:1 #include <iostream> 2 using namespace std; 4 class PhonePlan{ public: JSSENT 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 }; PhonePlan(); PhonePlan(int numMinutes, int numMessages); Print () const; void private: int int PhonePlan: : PhonePlan() { freeMinutes = 0; freeMessages = 0; } } int main() { freeMinutes; freeMessages; } // FIXME: Create a second constructor with numMinutes and numMessages parameters. /* Your solution goes here */ void PhonePlan::Print() const { cout << "Minutes: " << freeMinutes << PhonePlan user1Plan; PhonePlan user2Plan(1000, 5000); cout << "User1: "; user1Plan.Print(); // Default constructor cout << "User2: "; user2Plan. Print (); return 0; ', Messages: << freeMessages << endl; // Calls default constructor // Calls newly-created constructor CPP
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Class
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage