Write a C++ Program to Find Sum and Average of three numbers.
Soluion:
/* C++ Program to Find Sum and Average of three numbers */
#include<iostream>
using namespace std;
int main()
{
float a,b,c,sum,avg;
cout<<"Enter 1st number :: ";
cin>>a;
cout<<"
Enter 2nd number :: ";
cin>>b;
cout<<"
Enter 3rd number :: ";
cin>>c;
sum=a+b+c;
avg=sum/3;
cout<<"
The SUM of 3 Numbers [ "<<a<<" + "<<b<<" + "<<c<<" ] = "<<sum<<"
";
cout<<"
The AVERAGE of 3 Numbers [ "<<a<<", "<<b<<", "<<c<<" ] = "<<avg<<"
";
return 0;
}
Output:
/* C++ Program to Find Sum and Average of three numbers */
Enter 1st number :: 3
Enter 2nd number :: 4
Enter 3rd number :: 5
The SUM of 3 Numbers [ 3 + 4 + 5 ] = 12
The AVERAGE of 3 Numbers [ 3, 4, 5 ] = 4
Process returned 0
| Is This Answer Correct ? | 0 Yes | 0 No |
CDPATH shell variable is in(c-shell)
Describe the different styles of function prototypes in C++.
What are the costs and benefits of using exceptions?
Explain the difference between method overriding and method overloading in C++?
How to run C++ program in cmd
How to convert integer to string in C++
Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }
What is the difference between creating an object, using 'new' and using 'malloc'?
How to reverse a string in C++
What is bool in C++
Explain why C++ is not purely Object Oriented Language
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.