so i'm trying get the user to input a date 12/05/2005 and the outcome will be Dec 05, 2005. i got the Dec part but after that im not sure what is the best way to get the other numbers without having "/" in it ? any idea guys?
example:
5/20/2016 ---> May 20, 2016
something like this!
Couple suggestions, first it may be easier to have the input be 3 integers. If you are practicing using strings then I would recommend using std::string, in which case you can look through the string looking for the / and finding that to split up the string.