6.6 Write a complete program that calculates and prints the product of three integers.
7.5 JavaScript program that calculates and prints the sum of the integers from 1 to 10. Use
the while statement to loop through the calculation and increment statements. The loop
should terminate when the value of x becomes 11.
9.6 Write a complete JavaScript program to prompt the user for the radius of a sphere, and
call
function sphereVolume to calculate and display the volume of the sphere. Use the statement
volume = ( 4.0 / 3.0 ) * [Link] * [Link]( radius, 3 );
to calculate the volume. The user should input the radius through an XHTML text field in a
<form> and click an XHTML button to initiate the calculation.
.