filmov
tv
How to add two Integer arrays and get the reverse of sum of its two arrays.

Показать описание
How to add two integer arrays having different length, calculate the reverse of sum of two arrays.
Example ::
int [ ] ary1 = {1,2,3};
int [ ] ary2 ={4,0,1};
sum = 524
Reverse of sum = 425
Example ::
int [ ] ary1 = {1,2,3};
int [ ] ary2 ={4,0,1};
sum = 524
Reverse of sum = 425