Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Write a complete program that will input values for num1 ,num2, and num3 and display the value of the expression ( (num1 ^ 3) * num2 + 5 * ( num2 ^ 2) ) / num3. assume that the user enters only number
Write a complete program that will input values for num1 ,num2, and num3 and display the
value of the expression ( (num1 ^ 3) * num2 + 5 * ( num2 ^ 2) ) / num3.
assume that the user enters only numbers that are greater than zero and the calculation never exceed 4 bytes size.
Sample run:
num1 = 1num2 = 2num3 = 3((num1 ^ 3) * num2 + 5 * ( num2 ^ 2)) / num3 = 7 R 1