Write a C++ Program to Find Sum and Average of n numbers using for loop.
Solution:
/* C++ Program to Find Sum and Average of n numbers using for loop */
#include<iostream>
using namespace std;
int main()
{
int i,n,x,sum=0;
float avg;
cout<<"How many numbers u want to enter :: ";
cin>>n;
for(i=1;i<=n;++i)
{
cout<<"
Enter number "<<i<<" :: ";
cin>>x;
sum+=x;
}
avg=(float)sum/(float)n;
cout<<"
Sum of "<<n<<" Numbers :: "<<sum;
cout<<"
Average of "<<n<<" Numbers :: "<<avg;
cout<<"
";
return 0;
}
Output:
/* C++ Program to Find Sum and Average of n numbers using for loop */
How many numbers u want to enter :: 6
Enter number 1 :: 1
Enter number 2 :: 2
Enter number 3 :: 3
Enter number 4 :: 4
Enter number 5 :: 5
Enter number 6 :: 6
Sum of 6 Numbers :: 21
Average of 6 Numbers :: 3.5
Process returned 0
Is This Answer Correct ? | 0 Yes | 0 No |
What is a constructor initializer list?
What are the advantages and disadvantages of B-star trees over Binary trees?
How to generate random numbers in C++ with a range?
What kind of problems does name mangling cause?
How to delete array of objects in C++? Proof by C++ code for proper deletion
what do you mean by exception handling in C++?
Explain the FOR loop with a help of a code.
What is the difference between an ARRAY and a LIST in C++?
What is an abstract class in C++
0 Answers SwanSoft Technologies,
What are the costs and benefits of using exceptions?
Is there a difference between class and struct?
Write a C++ program to print strings in reverse order.