Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@manish-r2Hoep • Jun 9, 2010
-
@morningdot-6Xuj4M • Jun 9, 2010
this is the general expression.
x+y=(reverse(x*x)*10)+(y-1)
4+3=(reverse(16)*10)+(3-1)=612
5+7=(reverse(25)*10)+(7-1)=526
6+3=(reverse(36)*10)+(3-1)=632
9+5=(reverse(81)*10)+(5-1)=184
8+5=(reverse(64)*10)+(5-1)=464
here i tell you how to reverse any number.
reverse(16)=({16/10}*10)+[16/10]
where {} stand for fractional part of a number.
and [] stand for integer part of a number.
i think goyal tell the same thing but i explained it in breif.
😀 -
@sai-45XcSw • Jun 10, 2010
everything was fine but what are these reverse numbers frend? -
@morningdot-6Xuj4M • Jun 10, 2010
hey reverse(16)=61.
look here for how to calculate reverse of a number.
suppose we have to calculate reverse of 16
reverse(16)=({16/10}*10)+[16/10].
=({1.6}*10)+[1.6]
=(6*10)+1
=61.
here {} gives you the fractional part of any number.
and [] gives you the integer part of any number.