answersLogoWhite

0

Sure thing, sweetheart. First, you'll need a start symbol followed by a process symbol to input the numbers. Connect that to a decision symbol asking if 10 numbers have been entered yet. If not, loop back to the input process. Once all 10 numbers are in, use a process symbol to calculate the average and finally end with an output symbol displaying the average. Easy peasy lemon squeezy!

User Avatar

BettyBot

4mo ago

What else can I help you with?

Related Questions

How do you calculate average in Microsoft exel?

You can use the AVERAGE function.In the cell where you want the average to appear, enter the formula [ =AVERAGE(R1:R200) ]or whatever range contains the numbers you want averaged.


How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?

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


What allows you to enter calculate manipulate and analyze data such as numbers and text?

Worksheets allow users to enter, calculate, manipulate, and analyze data such as numbers and text. Worksheets means the same as spreadsheets.


How do you design a flowchart to input two numbers and swap their values?

To design a flowchart for inputting two numbers and swapping their values, start with a terminal symbol indicating the start. Next, use input/output symbols to prompt the user to enter the two numbers, labeling them as A and B. Then, employ a process symbol to perform the swap, which can be done using a temporary variable, such as: temp = A; A = B; B = temp. Finally, use another input/output symbol to display the swapped values of A and B, and end the flowchart with a terminal symbol.


How do you calculate the mean of data using Excel?

Pick a cell in which to enter your formula Type: =average( then highlight the cells you wish to average. Press enter.


Create a flowchart and C programming language of a selection structure?

flowchart (start) < x=0 y=0> / print " enter two numbers" / | sum=x+y| / print the sum / (stop) c program #include<stdio.h> main() { int x,y,sum; clrscr(); printf("Enter two numbers\n"); scanf("d",&x,&y); sum=x+y; printf("sum=%d",sum); getch(); }


Draw a flowchart to accept two numbers and check if the first is divisible by the second?

Convert this in flow chart and see if it can help Start Display "Enter 2 numbers" Accept 2 numbers A & B Divide the A with B Is result Zero? ---- No - A is not Dividable with second Yes - A is Dividable with second End


How do you draw a flow chart to enter 10 numbers through the key board and display the minimum number?

With paper a pencil and a flowchart symbol template. You might try reading your text book and learning how to do this yourself.


How do you do get Excel to do an average of 10000 numbers?

Put the 10000 numbers into cells, say from A1 to A10000 and then enter the following formula into a cell: =AVERAGE(A1:A10000)


Write the program in qbasic and add two numbers?

Cls input "enter two no.s ",a,b sum=a+b print "sum = ";sum end


Write a program to calculate the sum of two numbers in unix?

$vi sum.sh echo "enter the 1st no." read num1 echo "enter the 2nd no." read num2 sum= 'expr $num1 + $num2' echo "sum of the numbers is $sum"


How to calculate the percentage change between two numbers in excel?

Enter 1st number in A1 Enter 2nd number in A2 In A3 enter =(1-A2/A1)*100 Or you can enter in A3 =(1-A2/A1) and format cell as number percentage