Write a C++ Program to Find Sum and Average of three numbers.
Answer Posted / hr
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 |
Post New Answer View All Answers
What are the advantages and disadvantages of B-star trees over Binary trees?
What is the purpose of enum?
How do I tokenize a string in c++?
What Are The Differences Between A C++ Struct And C++ Class?
How do you use inheritance in unity?
Is c++ the hardest programming language?
What is data types c++?
Advantage and disadvantage of routing in telecom sector
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What is abstraction oop?
How do I start a c++ project?
What are issues if we mix new and free in C++?
What is a function in oop?
In C++ what is a vtable and how does it work?