Java int addition - the long way

  • Context: Java 
  • Thread starter Thread starter NiaSphinx
  • Start date Start date
  • Tags Tags
    Addition Java
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
NiaSphinx
Messages
4
Reaction score
0
Hi guys,

I'm trying to figure out a way to split up integers so I can do addition the old school way in Java.
E.g.:
1234
1234
+_____
2468

So you know start at the 4's and then add them up and move left etc.
Does anyone have any ideas on how I access the different digits of an int?

Thanks
 
Physics news on Phys.org
I don't know if there is some nice routine for this, but there is always the oldfashioned dirty way: to access the 10n digit (i.e. for n = 0 you get the units, for n = 1 the tens, etc) you can integer-divide by 10n and then take the result modulo 10.
For example:

1234 / 100 = 12 (as integer division produces an integer by chopping off the decimal part)
12 % 10 = 2
 
Ah that does sound like a good way of doing it.
Can it work the same if the base is not 10?
 
I suppose in base b, one can still obtain the digits at the nth position (starting from n = 0 on the right) of a number N as

[tex]\operatorname{digit}_n(N) = \left[ N / b^n \right] \text{ mod } b[/tex]
where the square brackets denote the floor of the division.