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 |
How to stop class inheritance in C++ with condition that object creation should be allowed
Write a C++ Program to Find Sum and Average of three numbers.
Explain the operator overloading feature in C++ ?
How to invoke a C function using a C++ program?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What is the difference between malloc, calloc and realloc?
Without using third variable write a code to swap two numbers.
What is the 4 difference between delete[] and delete?
Can we call a virtual function from a constructor?
Can we provide one default constructor for our class?
In C++ what is the meaning of data hiding?
Is there a difference between class and struct?