avg = (double)(num1 + num2 + num3) / 3;,”Calculate the average (as a double ) of the values contained in the integer variables num1, num2, num3 and assign that average to the double variable avg. Assume the variables num1, num2, and num3 have been declared and assigned values

Average Rating
0 out of 5 stars. 0 votes.

avg = (double)(num1 + num2 + num3) / 3;,”Calculate the average (as a double ) of the values contained in the integer variables num1, num2, num3 and assign that average to the double variable avg. Assume the variables num1, num2, and num3 have been declared and assigned values

and the variable avg declared”