answersLogoWhite

0

/*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();

}

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran

Add your answer:

Earn +20 pts
Q: C program to calculate sum and average of 4 numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do you write a pseudocode that accepts five numbers and displays the sum and average of the numbers?

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 &quot;Sum: &quot;, sum OUTPUT &quot;Average: &quot;, average END


What is the average of 8 numbers if their sum is 2464?

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 &divide; 8 = 308.


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 is the average of 16 and 40?

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.


To calculate sum of 2 numbers?

The sum of two numbers is the result of multiplying those numbers together. It can also be referred to as repetitive addition.