answersLogoWhite

0


Best Answer

Its either 75 or 87 because I do not know if "sum" means the numbers added together (e.g 7+5) or if it is the actual number. 75 works for both, the actual number and them added together, 87 only works for them added together.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: I am a 2 digit odd number the digit in my tens place is less than 9 the sum of my digits is divisible by 3 if you count by 4s beginning with 75 you'll find me?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the least 4-digit number that is divisible by 3?

1


What is a 3 digit number that rounds down to 900 as nearest hundred and the digit in the ones place is the fifth odd number that you can count beginning with 1 and the sum of the digits is 22?

The number is 949.


How many digits does the number ten thousand have?

10,000....Count


The following number 0.00405608 has how many significant digits?

it has 6 sig digits (405608) the 0.00 dont count


How can you figure out the number of digits a quotient has without completing a division problem?

You would get the quotient first and count the digits.


What is the highest number you can count to?

A circle has no beginning.


When a three digit number has the same three numbers is it divisible by 11?

No. (Assuming a three digit number is in the range 100-999 and excludes leading zeros, that is 080 does not count as it is really 80 which is a two digit number) To be divisible by 11, the difference in the sums of the alternate digits of the number must be divisible by 11 (or 0). For a three digit number, this means that the sum of the first and last digits less the second digit must be a multiple of 11 (or 0). For a three digit number with all the digits the same, this calculation results in the value of one of the digits (eg 333 → 3 + 3 - 3 = 3) which will not be 0, and cannot be a multiple of 11 as a single digit is less than or equal to 9 which is less than 11 and thus not a multiple of 11.


How many significant digits are in the number 605.20?

5 (zeroes before the number don't count, zeroes after the number do)


How many significant digits are in the following number 7.0047?

5. Count the number of digits from the first non-zero digit to the last non-zero digit.


How many significant digits are in there in 7036?

Because this number does not have a decimal point, to count significant digits, we start at the right and start counting from the first non zero number. The first non zero number is 6 and this number has 4 significant digits.


What are the two rules for deciding the number of significant digits in an answer to a calculation?

The first rule is to count all the digits from the beginning of the number until the first uncertain digit. The second rule is to round the final answer to match the least precise measurement used in the calculation.


Write a java program to find out the sum of a number of n digits?

class Sum_Of_Digits { public static void printSumandnoofdigits(int n) { int temp = n; int count = 0; int sum = 0; while ( n > 0 ) { sum = sum + n % 10; n = n / 10; count ++; } System.out.println("The number is..." + temp ); System.out.println("The sum of digits is..." + sum); System.out.println("The number of digits is..." + count); } }