Computing average is a little confusing especially if your calculator is not around. So, I made a program that will compute for your average to make computing more easier and it is user-friendly. The program is structured with the basic commands in C++ language. Check out the code below.
1: #include <iostream>2:3: #include <conio.h>4:5: using namespace std;6:7:8:9: int main()10:11: {12:13: float num1 = 0.0f;14:15: float num2 = 0.0f;16:17: float num3 = 0.0f;