Q:

C++ Program to Find Sum and Average of three numbers

belongs to collection: C++ Basic Solved Programs

0

Write a C++ Program to Find Sum and Average of three numbers. Here’s simple C++ Program to Find Sum and Average of three numbers in C++ Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Here is source code of the C++ Program to Find Sum and Average of three numbers. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.

 
 

SOURCE CODE : :

/* 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<<"\nEnter 2nd number :: ";
    cin>>b;
    cout<<"\nEnter 3rd number :: ";
    cin>>c;

    sum=a+b+c;

    avg=sum/3;

    cout<<"\nThe SUM of 3 Numbers [ "<<a<<" + "<<b<<" + "<<c<<" ] = "<<sum<<"\n";
    cout<<"\nThe AVERAGE of 3 Numbers [ "<<a<<", "<<b<<", "<<c<<" ] = "<<avg<<"\n";

    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

Above is the source code for C++ Program to Find Sum and Avg. of three numbers which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Basic Solved Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C++ Program to convert inches to feet yards and in... >>
<< C++ Program to Generate Random Numbers between 0 a...