I wrote a pretty big program with many methods that use a variable as integer. Is there a way to change it fast to something else? Note that some methods use div and mod on that integer, so trying to change it into Arraylist would mean changing pretty much a lot of code.
I discovered too late that int is not enough to store the numbers that I need(coefficients of polynomials, that is; I though I was going to work with small ones, but ended up needing ones of bigger length than 9).