Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Enter the value into each box to complete the following codes and statements. //

ID: 3872937 • Letter: E

Question

Enter the value into each box to complete the following codes and statements. // Program to use mathematical process and the data type #include #include int main) / Declaration of variables */ int num intl,num int2: float num floatl, num float2: / Input integer variables*/ printf("Enter first positive integer: ) scanf( 1 scanf ( ttr second-Positi / Input float variables / printf "Enter first positive real number ) scanf ( 4 printf ("Enter second positive real number:") scanf ( 4 / Output mathematical proces printf ("num intl num int27" printf ("num int1 / num-int2-L ", 9 / Output mathematical process on real number values/ / with 2 decimal places precision printf ("num-float! * num-float2 = printf("nun_float1 / nunn-float2 = L-10-J", printf("the 5h power of num float2 is10 12 13 return 0;

Explanation / Answer

1 %d   
2 num_int1
3 num_int2

4 %f
5 num_float1
6 num_float2

7 %d
8 num_int1 * num_int2
9 num_int1 / num_int2

10 %f
11 num_float1 * num_float2
12 num_float1 / num_float2

13 math.pow(num_float2, 5)

14 0
15 12.0
16 0.750000
17 1024.000

Kindly rate an upvote thankyou.