answersLogoWhite

0

count in your head and tell the answer

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Find an integer such that the sum of twice the square of the integer and theinteger itself is 55?

find the sum of 2 and 2


How do you find sum of a number?

You find the sum of two numbers by adding the two together. Example: The sum of 1 + 1 is 2


What does it mean to find the sum?

sum means addition so the sum of 5 and 2 will be 7


To find the sum?

The sum in math is the answer of a question that involves addition. For example, the sum of '5 + 2' is '7'.


Shell program to find the sum of square of individual digits of a number?

There are many shell programs that will find the sum of the square of individual digits of a number. A small example is: SD=3n=2, sum=2, and SD=2.


What is an equation to find the sum of all the integers from 1 to 2010?

To calculate the sum of the numbers 1 to n, the formula is: sum = n(1 + n) / 2 So, an equation to find the sum of the integers 1 to 2010 is: sum = 2010 x (1 + 2010) / 2


Find the sum. 6/a^2b^2 + a^2/b?

7


Find the sum of the prime factors of 28?

The prime factors of 28 are 2 and 7. Their sum is 9.


How do you find the sum and average of two integers?

Add the numbers together (sum) and divide by two (average). SUM: 2 + 8 = 10 AVG: 10 / 2 = 5


Write a recursive function to find sum of even numbers from 2 to 150?

int sum (int from, int to, int step){if (from>to) return 0;else return from + sum (from+step, to, step);}...n = sum (2, 150, 2);


How do you find the sum of interior angles on polygons?

180*2


Write a program to find the sum of even numbers from 2 to50?

In Java:sum = 0;for (i = 2; i