Saved Bookmarks
| 1. |
Accept any three numbers and display the average programs for C++ |
|
Answer» Answer: SUM = num1 + num2 + num3. The average value is CALCULATED by the sum of variables divided by the NUMBER of variables. Here, the number of variables is three. So, average = sum / 3 CALCULATES the average value |
|