/*mycfiles.wordpress.com
To Calculate Sum & Average of 4 no.*/
#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,c,d,sum,avg;
clrscr();
printf("Enter the 4 nos.\n\n");
scanf("%f%f%f%f",&a,&b,&c,&d);
sum=a+b+c+d;
avg=(a+b+c+d)/4;
printf("\nSum is= %f\nAverage is= %f",sum,avg);
getch();
}
Chat with our AI personalities
To write pseudocode that accepts five numbers and displays their sum and average, you can follow these steps: Initialize a variable sum to 0. Loop five times to accept input for each number, adding each to sum. After the loop, calculate the average by dividing sum by 5. Display both the sum and the average. Here’s a simple representation: BEGIN sum = 0 FOR i FROM 1 TO 5 DO INPUT number sum = sum + number END FOR average = sum / 5 OUTPUT "Sum: ", sum OUTPUT "Average: ", average END
The mean average of a set of numbers is the sum of the numbers divided by how many of them there are. If there are 8 numbers with a sum of 2464, their mean average is 2464 ÷ 8 = 308.
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
The average of a series of numbers is their sum divided by however many numbers there are: in this case you would calculate: (16 + 40) / 2 =56 / 2 =28 Therefore the average of 16 and 40 is 28.
The sum of two numbers is the result of multiplying those numbers together. It can also be referred to as repetitive addition.