Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute the total and average of four numbers

C++ Basic: Exercise-30 with Solution

Write a program in C++ to compute the total and average of four numbers.

Pictorial Presentation:

C++ Exercises: Compute the total and average of four numbers

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

    int main()
    {
    	float n1,n2,n3,n4,tot,avrg;
		cout << "\n\n Compute the total and average of four numbers :\n";
		cout << "----------------------------------------------------\n";		
        cout<<" Input 1st two numbers (separated by space) : ";
    	cin>> n1 >> n2;
        cout<<" Input last two numbers (separated by space) : ";
    	cin>> n3 >> n4;
    	tot=n1+n2+n3+n4;
		avrg=tot/4;
        cout<<" The total of four numbers is : "<< tot << endl;
        cout<<" The average of four numbers is : "<< avrg << endl;
        cout << endl;
        return 0;
    }

Sample Output:

 Compute the total and average of four numbers :                       
----------------------------------------------------                   
 Input 1st two numbers (separated by space) : 25 20                    
 Input last two numbers (separated by space) : 15 25                   
 The total of four numbers is : 85                                     
 The average of four numbers is : 21.25   

Flowchart:

Flowchart: Compute the total and average of four numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to compute quotient and remainder.
Next: Write a program in C++ to input a single digit number and print a rectangular form of 4 columns and 6 rows.

What is the difficulty level of this exercise?