How to find Average of Three Numbers in C++ - Step by Step Examples
How to find Average of Three Numbers in C++ ?
Answer
To find the average of three numbers in C++, you can add the numbers together and divide by 3.
✐ Examples
1 Average of Three Numbers
In this example,
- We declare variables
num1
,num2
, andnum3
and assign values to them. - We add
num1
,num2
, andnum3
together and divide by 3 to get the average. - We use
cout
to print the average.
C++ Program
#include <iostream>
using namespace std;
int main() {
int num1 = 10;
int num2 = 20;
int num3 = 30;
float average = (float)(num1 + num2 + num3) / 3;
cout << "Average of " << num1 << ", " << num2 << ", and " << num3 << " is: " << average << endl;
return 0;
}
Output
Average of 10, 20, and 30 is: 20
Summary
In this tutorial, we learned How to find Average of Three Numbers in C++ language with well detailed examples.