answersLogoWhite

0


Best Answer

4+7+5+6+8=30

30 is the only sum those numbers can add up to.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the greast possible sum fot the nums 4 7 5 6 and 8?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write java program for mean of ten numbers?

// numbers to work with double[] nums = {1, 2, 3, 4.5, 5.5, 6, 7.5, 8, 9, 10}; double sum = 0; // total sum for (int i = 0; i < nums.length; ++i) { sum += nums[i]; } // final average final double mean = (sum / nums.length);


Write a C program to find the sum of all prime numbers in an array?

Borrowing the isPrime function from another answer of mine. Note that this will result in terrible performance for large arrays of numbers. (You should look into one of the sieve algorithms for this) // returns 1 if n is prime, 0 otherwise void isPrime(const int n) { // We know that if n is composite, then we will find a factor in the range [2,sqrt(n)] // so we compute the square root only once to limit our number of calculations. const int sqrt_n = sqrt(n); // Iterate through possible factors int i; for( i = 2; i <= sqrt_n; ++i ) { // If n is divisible by i (n%i==0) then we have a factor if(!(n % i)) { return 0; } } // If we get here, we know n has no factors other than itself and 1 return 1; } // returns the sum of all prime numbers in nums int findPrimeSum(const int numsLength, const int[] nums) { int sum = 0; // iterate through nums and add up all the primes int i; for(i = 0; i < numsLength; ++i) { if( isPrime(nums[i] ) { sum += nums[i]; } } return sum; }


What is the sum of the probabilities of all possible outcomes?

The sum of the probabilities of all possible outcomes is 1.


What is the least possible sum of two 4-digit numbers?

what is the least possible sum of two 4-digit numbers?what is the least possible sum of two 4-digit numbers?


When you have a sum and it ends in kilometres can the answer be like 34.50?

It depends on the sum, but yes, it is possible.


What is the sum of C12H18O2?

C12H18O2 is not a mathematical expression, not is it a sum so there is no sensible answer possible.


Is the sum of a rectangle 360 degrees?

The sum of the interior angles of a rectangle is 360 degrees, but that is not the only sum possible.


What is the largest sum possible with 2 six sided dice?

The largest possible sum with 2 six sided dice is 12.


What are to multiples of 1600 that sum to -1?

1601


How many possible outcomes sum of dots are there if you throw the two dice on the board?

The sum can be any number from 2 to 12.That's 11 possible outcomes.


Is it possible for a polygon to have an interior angle sum of 2450?

No


What is the sum of all possible 2 digit number using the digits 3 and 4?

The sum is 154.