Answer to Question #94935 in C for SB

Question #94935
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
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS