answersLogoWhite

0


Best Answer

whats the answer please??

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: I am a three digit number. The sum of my digits is 18. When I reverse my digits and subtract the new number from the original number you get 99. What number I am?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

If 27 is added to a twi digit number the result is a number with the same digits but in reverse order The sum of the digits is 11 What is the original number?

38


How to check the divisibility by 23?

Multiply the last digit by 7. Subtract that number from the remaining digits. If that number is divisible by 23, then the original number is divisible by 23.


How do you know that a numeric is palindrome or not using c or pascal language?

Reverse the digits then check of the new number is the same as the original number.


The sum of the digits in a two digit number is 17 If the digits are reversed the new number will be 9 less than the original number What is the original number?

Possibility of two digit no whose sum is 17 89 and 98 Reverse of 89 is 98. 98 is 9 less than the original no 89. 89 is original no


What is the answer to a 4 digit number subtracted from a 5 digit number to equal 33333?

Any four-digit number will do. Add it to the number 33333, to get the original number you have to subtract from.Any four-digit number will do. Add it to the number 33333, to get the original number you have to subtract from.Any four-digit number will do. Add it to the number 33333, to get the original number you have to subtract from.Any four-digit number will do. Add it to the number 33333, to get the original number you have to subtract from.


What is a four digit number that you can multiply by 4 and get a number with the original digits in reverse order?

2178 x 4 = 8712


Could you please tell me the Palindrome number checking code?

The most efficient method is to reverse the digits in the number and then check if the reversed number is equal to the original number. In C, we can implement this as follows (using long-hand notation for clarity). Note the use of base (defaulting to base 10) so that we can check values in other bases. bool is_palindrome (unsigned num, unsigned base = 10) { // local variables unsigned rev, digit, digits; // copy the input number digits = num; // initialise the accumulator rev = 0; // repeat while there are digits while (digits) { // extract the low-order digit using modulo (%) operator digit = digit % base; // shift the accumulated digits (if any) one position to the left rev = rev * base; // add on the new digit rev = rev + digit; // shift the remaining digits one position to the right digits = digits / base; } // end while // return true if the number and its reverse are equal return num == rev; }


If the sum of the digits in a two digit number is 10 and when the digits are reversed the new number is 54 more than the original number what is the original number?

Possibility of two digit no whose sum is 10 19,28,37,46,55,64,73,82,91 Now add 54 to each no mentioned above 73,82,91,100,109,118,127,136,145 See after 1st comma 28 and 82 Reverse of 28 is 82. That no 82 is 54 more than the no 28. So 28 is the original


Is 1 trillion 17 a prime number?

Since the sum of the digits is divisible by 3, the original number is also divisible by 3.Since the sum of the digits is divisible by 3, the original number is also divisible by 3.Since the sum of the digits is divisible by 3, the original number is also divisible by 3.Since the sum of the digits is divisible by 3, the original number is also divisible by 3.


Why does the 1089 maths trick work?

let a, b, c denote the three digits of the original number, then the three-digit number is 100a+10b+c. The reverse is 100c+10b+a. Subtract: (100a+10b+c)-(100c+10b+a) to get 99(a-c). Since the digits were decreasing, (a-c) is at least 2 and no greater than 9, so the result must be one of 198, 297, 396, 495, 594, 693, 792, or 891. When you add any one of those numbers to the reverse of itself, you get 1089


When you reverse the digits in a certain two-digit number you increase its value by 9 Find the number if the sum of its digits is 7?

34.


How do you do subtracting fractions with regrouping?

You do by subtracting one from the previous number and adding 10 to the top number of the digits you are regrouping. Subtract those two digits and you should get your answer.