I'm trying to add numbers that are larger than the max value for an int. So I'm storing the numbers in arrays, however, it isn't even letting me type numbers into my second array from the console. Any suggestions?
Oh, I hadn't realized this was an assignment. Ignore what I said, sorry for the confusion.
I'll take a more thorough look at your code, and I'll edit this post once I'm back.
*EDIT* the code works fine for me. I think the problem may be that you are entering the whole number with several digits, when you should actually be entering the individual digits, one at a time - because that's how your loop is set up.
Note that each element of your dynamic arrays are integers. Assuming they are 32-bit signed integers, each element can hold a value of -2147483648 through 2147483647.
What I'm getting at is that I think you think you're doing this: