โ Back to Inheritance
Question 133
Using Protected Instead of Private
Using Protected Instead of Private
A base class BankAccount has been provided with a protected int accountNumber and a constructor that initializes it. A derived class CheckingAccount publicly inherits from BankAccount. The displayAccount() function has been declared. Your task is to implement displayAccount() so that it prints: Account: [accountNumber] Because accountNumber is protected (not private), it can be accessed directly in the derived class. Do NOT include a main function. Your code will be tested automatically. Expected output: Account: 12345
Expected Output:
Account: 12345
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.