you'll have better luck doing this
#include<iostream>
#include<string>
using namespace std;
class BankAccount
{
private:
double balance;
string accountID;
};
----------------
remember anytime you #include
its a good idea to also write
using namspace std;
and don't use <string.h>
it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.