Answer to Question #94935 in C for SB
use a while loop that finds the x3 where x = 20...10 (use the order
from 20 to 10 and not 10 to 20)
1
2019-09-23T06:48:45-0400
int x = 20;
int x3;
while(x >= 10)
{
x3 = pow(x, 3);
printf("x3 = %d\n", x3);
--x;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C
Comments
Leave a comment