answersLogoWhite

0


Best Answer

1.Start Algorithm

2.Enter first number

3.Enter second number

4.Enter third number

5.Enter fourth number

6.Enter fifth number

7.Add five number

8.display five number / 2

9.Display result

10.End Algorithm

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Muhammad Ibrahim Mai...

Lvl 2
1y ago

Write an algorithm that accept five numbers add them together and output the results instruct

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is there an algorithm which accepts two numbers from the user and displays which of the two numbers are relatively greater?

Algorithm:Given x and y are both numbers, if x is greater than y then return x, otherwise return y.C++ implementation of the algorithm:template T GetMax(T x, T y) { return(x>y?x:y); }


Write an algorithm and draw a corresponding flowchart to search a number in the given list of numbers and also display its position?

please give me an algorithm and a corresponding flow chart that displays list of numbers from 1 to 20.


How do you design an applicatoin that accepts 10 numbers and displays?

Simply: design an application, that accept one number, then put it in a loop that repeat is ten times.


How do you describe an algorithm with rational numbers?

Describe an algorithm for dividing rational numbers.


The AVERAGE function displays the lowest value in a range?

No. The MIN function displays the lowest value in a range. The AVERAGE function gets the arithmetic mean of a set of values. It totals them up and divides by the amount of numbers.


Write an Assembly language program which implements sorting algorithm both ascending and descending order and display those numbers with certain delay say of 5sec between successive displays?

das


Write algorithm compute sum of square of N numbers?

1. Design an algorithm to compute sum of the squares of n numbers?


What is an algorithm for multiplying rational numbers?

The algorithm is A/B * C/D = AB/CD.


All even numbers from 2-100 using algorithm?

102


Could you Write a program for 8086 microprocessor that displays on the monitor the average of 2 numbers from an array?

How to write a program for mouse in microprocessor?


What is the algorithm for calculating the average of given set of numbers?

you add all of the numbers together, and then divide the sum by however many numbers there were. example: 2, 4, 4, 5, 7 2+4+4+5+7=22 22/5=4.4 average=4.4


What is sub-algorithm?

It is an algorithm used by another algorithm as part of the second algorithm's operation.As an example, an algorithm for finding the median value in a list of numbers might include sorting the numbers as a sub-algorithm: There are plenty of algorithms for sorting, and the specifics of the sorting does not matter to the "median value" algorithm, only that the numbers are sorted when the sub-algorithm is done.For what an algorithm is, see related link.