I have a problem here. I want to try to figure out how to take an integer, let's use 1234, and split into it's "place values." This means changing
1234
into
1000, 200, 30, 4
I am thinking about putting these into arrays, but im not sure what to do from there. My entire code will take any user input and turn it into roman numerals, and this is what i am thinking.