Nhielidn
Answered

Makahanap ng eksaktong solusyon sa iyong mga problema sa IDNStudy.com. Magtanong ng anumang bagay at makatanggap ng kumpleto at eksaktong sagot mula sa aming komunidad ng mga propesyonal.

input 2 number then reversed it....for example 39 becomes 93 how to reverse that number can you please give me a formula and a solution....

Sagot :

using modulus and division...
1st
n = (39%10)
m = 9
n = (39/10)
n = 3 truncate decimal places
if n != 0 then m x 10
m = 9 x 10 = 90
else m = 9

2nd
n = (3%10)
m = 3
n = (3/10) = 0
if n!=0
m = 3 x 10 = 30
else m = 3

 repeat the same process until n/10 = 0
sum all value m 90+3 = 93