document.write( "Question 582896: the sum of the 3 digits of an even number is 9. What is the number if its tens digits its 1 more than its ones digit? \n" ); document.write( "
Algebra.Com's Answer #372265 by lwsshak3(11628) ![]() You can put this solution on YOUR website! the sum of the 3 digits of an even number is 9. What is the number if its tens digits its 1 more than its ones digit? \n" ); document.write( "** \n" ); document.write( "let u=units digit \n" ); document.write( "let t=tens digit \n" ); document.write( "let h=hundredth digit \n" ); document.write( ".. \n" ); document.write( "u+t+h=9 \n" ); document.write( "u=t-1 \n" ); document.write( "h=t+1 \n" ); document.write( ".. \n" ); document.write( "t-1+t+t+1=9 \n" ); document.write( "3t=9 \n" ); document.write( "t=3 \n" ); document.write( "u=t-1=2 \n" ); document.write( "h=t+1=4 \n" ); document.write( "number=432 \n" ); document.write( " |