answersLogoWhite

0

2(25 + 8)

or you could just write 66.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is the sum of eight?

the sum of eight is 4+4


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);


How do you write eight hundred and seventeen thousands?

To write eight hundred and seventeen thousand in numerical form, you would write it as 817,000. The number consists of 800,000 (eight hundred thousand), 10,000 (ten thousand), and 7,000 (seven thousand). Together, they sum up to 817,000.


How do you write the different between twenty and five multiplied by the sum of eight and two?

20 - 5(8 + 2) or you could just write -30


Write a program that read 10 numbers from the user and display their sum?

#include<stdio.h> void main() { int num, sum=0, i; printf("Enter ten numbers: \n"); for(i=0;i<10;i++) { scanf("%d",&num); sum += num; } printf("\n The sum of the numbers is %d",sum); getchar(); }


What is the sum of negative eight and three?

-5 what is the sum of negative eight and three?


What is the sum of eight and eight?

18


What is the sum of 4 and negative eight?

The sum of four and negative eight is negative four.


How do you rewrite the word statement six times the sum of eight and eight?

six times the sum of eight and eight 6*(8+8) = 96add eight to eight and multiply the result by six.


What would the sum of opposites be?

The sum of a number and its opposite would be zero. Example: 8 + -8 (since it's easier to not use double signs i'll write it this way) 8 - 8 = 0.


What is the sum of eight and nine tenths and nine and eight tenths?

The sum of (eight and nine tenths) plus (nine and eight tenths) is (eighteen and seven tenths). 8.9 + 9.8 = 18.7


Program in Java to illustrate the function overloading?

Below is an example of method overloading which returns the sum of two number types. Each method performs the calculation and returns a value in a different type. int sum(final int a, final int b) { return a + b; } long sum(final long a, final long b) { return a + b; } float sum(final float a, final float b) { return a + b; } double sum(final double a, final double b) { return a + b; }