i need to find a way to include this C++ code into either javascript or css or html
cin.getline(szIn,256);
CString strIn = szIn;
CString strMonth, strDay, strYear;
int d1= strIn.Find('/');
strMonth=strIn.Left(d1);
int d2= strIn.Find('/',d1+1);
strDay= strIn.Mid(d1+1,d2-d1-1);
int...