Objects of the BankAccount class require a name (string ) and a social security number (string ) be specified (in that order)upon creation. Declare two strings corresponding to a name and a social security number and read values into them from standard input (in that order). Use these value to define an object of type BankAccount named newAccount.

C++

LANGUAGE: C++ CHALLENGE: Objects of the BankAccount class require a name (string ) and a social security number (string ) be specified (in that order)upon creation. Declare two strings corresponding to a name and a social security number and read values into them from standard input (in that order). Use these value to define an…

Read More