1) line 12: subscripts into arrays must be integers, not doubles. You have one of two choices here: either make the variables i and j integers on line 12 or typecast them to integers every place in your program where they are used as subscripts. Its a lot easier and less error prone to just make them integers on line 12.
2) line 15. The array is declared incorrectly. Should be like this:
char *month[] ={"JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER"};
3) line 85: cout<<(temp[0][ind]);
This has a similar problem as that described for line 12 -- variable ind is a double.