If you haven't learned about vectors then you might have learned about arrays.
http://www.cplusplus.com/doc/tutorial/arrays/
If you want to save the data to a file on the hard drive for instance ( ie 'persistence') this might be of interest for now or the future
http://www.cplusplus.com/doc/tutorial/files/
As already alluded to you can design/create your own data type by using classes, structs etc instead of an int say you can create/define a bank_account data type which could have an account_name and balance as part of it.