money is a bit tricky to represent in programs. one naturally wants to use floating-point like 7.52 to represent 7 dollars and 52 cents, but many programmers believe that money should be represented as ints because money is counted (versus being measured like temperature). one approach is to do all money calculations using cents, represented as an integer, like 752 cents. a useful method in such an approach might convert cents into separate dollar and cents values. write a method centstodollarscents() whose parameter is given cents and returns an array of integers containing numdollars and numcents, respectively. if the first parameter is 752, the array would contain [7, 52], and your output should be 7 dollars 52 cents.