answersLogoWhite

0


Best Answer

Let x be the unknown number and let y be the ten's digit,

then x = 10y + y - 3 = 11y - 3,

and x = 8 + 6(y + y - 3) = 8 + 6(2y - 3) = 8 + 12y - 18 = 12y -10,

therefore 12y - 10 = 11y - 3.

Subtracting 11y and adding 10 to each side, y = 7.

Since the ten's digit is 7, the unit's digit must be 4, and the number is 74.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The ten's digit of a two-digit number is 3 more than the units' digit The number is 8 more than six times the sum of the digits Find the number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

You are a two-digit number your tens digit is 3 times your ones digit The sum of your digits is 12 What number are you?

2


There is a 2 digit number that is 2 times the sum of its digits What is this number?

Eighteen


What is the greatest possible 9 digit number that uses each of the digits 1-3 times?

what is the greets possible 9 digit number that uses each of the digits 1-3 times


What number is the ones digit three times the tens digit and both digits are even?

26.


A two digit number is five times the sum of the digits if 9 is added to the number the digits are reversed find the number?

45


What 2 digit number is three times the sum of its digits?

27


What two digit number is 7 times the sum of its digits?

21


You are a three digit even number all your digits add up to 12 the product of your digits is 0 my hundreds digit is twice times your ones digit what are you?

804


In a two-digit number the first digit is 5 less than the second digit. The number itself is three times the sum of its digits. What is the number?

27


Which 2 digit number is 3 times the value of it's digits?

27


The sum of the digits of a 2-digit number is 10The digit in one's placeis nine times the digit in ten's place Find the number?

-8


How do you make a program that counts how many times each digit occured in the integer?

To count the number of times a digit occurs in an integer, start by initializing an array of ten counts of digits, such as int digits[10];Then, in a loop while the number is non zero, increment the element in the digits array that corresponds to the units digit, and then divide the number by ten, such as digits[number%10]++ and number/=10;int digits[10];int i;int number = some number;for (i=0; i