write a program which inputs a date in the format dd/mm/yy and outputs it in this format ;month,dd,yy : for example 25/12/61 becomes December 25, 1961
1
Expert's answer
2013-02-06T08:04:49-0500
#include <iostream> #include <string>
using namespace std; int main(){ cout<<"Enter? please a date in the format dd/mm/yy \n"; string date; cin>>date; string temp; temp += date[0]; temp += date[1];
Comments