Q:

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

0

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

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

All Answers

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

#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;
    }

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now