document.write( "Question 730791: The sum of the digits of a three-digit number is 15. The ones digit is one less than the tens digit. The hundreds digit is two less than the tens digit. What is the number. \n" ); document.write( "
Algebra.Com's Answer #446856 by lwsshak3(11628)\"\" \"About 
You can put this solution on YOUR website!
The sum of the digits of a three-digit number is 15. The ones digit is one less than the tens digit. The hundreds digit is two less than the tens digit. What is the number.
\n" ); document.write( "***
\n" ); document.write( "let u=units digit
\n" ); document.write( "let t=tens digit
\n" ); document.write( "let h=hundreds digit
\n" ); document.write( "..
\n" ); document.write( "u=t-1
\n" ); document.write( "h=t-2
\n" ); document.write( "u+t+h=15
\n" ); document.write( "t-1+t+t-2=15
\n" ); document.write( "3t=18
\n" ); document.write( "t=6
\n" ); document.write( "h=t-2=4
\n" ); document.write( "u=t-1=5
\n" ); document.write( "number:100h++10t+u=400+60+5=465
\n" ); document.write( "
\n" ); document.write( "
\n" );