answersLogoWhite

0


Best Answer

to find the average (a.k.a mean) of any set of numbers you add all of the numbers up, then divide by however many numbers there are. for ex: 2,7,5,9,4 1st step: 2+7+5+9+2= 25 2nd step: 25 divided by 5= 5 average equals=5

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can you form a program of finding the average of five numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When the pachymeter give you five numbers how do you get the average of these numbers?

I don't know what a pachymeter is. But here's how to get the average of any five numbers, no matter where they came from: -- Add up all five numbers. -- Divide the sum by 5 . The quotient is the average of the five numbers.


What are the five numbers if the average of five consecutive odd numbers is 745?

741,743,745,747,749


How do you find the sum of five numbers if the average of the five numbers is 790.6?

The average of a group of numbers is equal to the sum of the numbers divided by the number of numbers. If you want to find the sum of the five numbers, just multiply 790.6 by 5 to get the sum, which is 3953


What is a design a flow chart that will compute the average of 5 numbers?

A flow chart is a diagram that represents the steps to finding a solution to a problem. To find the average of five numbers, all five must be added together, then the end number must be divided by 5. The flow chart will show these steps in boxes.


The sum of 5 numbers is 200 what is the average of the numbers?

The average of five numbers whose sum is 200 will always be 40, no matter which numbers you choose. When finding an average, you add up the numbers (find the sum of the set), then divide by the number of terms. In this case, the sum will always be 200, and there will always be five terms. This will always result in an average of 40. Ex/ 1 + 2 + 3 + 4 + 190 = 200 200 / 5 = 40 40 + 40 + 80 + 24 + 16 = 200 200 / 5 = 40


What is the average of the first five composite numbers?

7.4


How do you compile and execute a java program which finds out the highest of any five numbers?

it will be destroyed.


What is the probability of finding five numbers of six digits chosen randomly from 100000 to 999999?

There is 100% chance.


How do you write a c program to get the average of five numbers?

If the five numbers need to be read from command-line, you'll have to parse the arguments (the function atoi() will come in handy there). If the five numbers are known at compile-time, you'll get a program like below: #include <stdio.h> int main(int argc, char **argv) { int a = 10; int b = 20; int c = 30; int d = 40; int e = 50; int result = (a + b + c + d + e) / 5; printf("The average of %d, %d, %d, %d and %d is %d\n", a, b, c, d, e, result); }


Average of a set of number?

Just add all the numbers, then divide by the size of the set. For example, if you have a set of five numbers, add all of them, then divide the result by five.


The average of 5 numbers is 82 The average of 4 of the numbers is 80 what is the fifth numbers?

Average of five numbers is 82 so their sum is 82*5 = 410. Average of four of them is 80, so their sum is 80*4 = 320. So the fifth number is 410 - 320 = 90.


How do you find the average of 5 numbers using static method in java?

Add the five numbers; divide the result by 5.