Question: This is a C++ program for my class and I need help with it, if anyone is willing to help I'd be thankful, thank you
Lab Ab Intro to Classes 1. Make a new folder for lab4b. 2. Download the files BankAccount.h and BankAccount.cpp. 3. Write this in C++ Create lab4b.cpp a) Include libraries iostream, iomanip, and the header file b) Write a main function that will create two BankAccount objects and test the member functions of the Bank Account class Note: the syntax for instantiating objects in C++ is different from that of Java. Here's the C++ syntax BankAccount oesChecking "Joe", Smith 1234) j 4. Create a makefile Be sure to use the g compiler command. 5. Add a default constructor and a member function that will display the data members. BankAccount set the first and last names to the empty string and set the account number to zero. display print the data members in this format Customer Joe Smith Account: 1234 DO NOT UNDER ANY CIRCUMSTANCES, USE THE KEYWORD "this 6. Add tests to your main function. Remake the executable Test and debug as needed. 7. zip the files lab4b.cpp, BankAccount.h, Bankaccount.cpp, and make file. Submit the zip file on Canvas Lab Assignent 4b. Grading Criteria: Documentation and Style 3 points 3 points Makefile 3 points default constructor display function 3 points 8 points lab4b main function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
