Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 15 Online
OpenStudy (anonymous):

Mooc question: Hi, having trouble solving week 2, section 1.8, nr. 3: "Write a program using a for loop that calculates exponentials. Your program should ask the user for a base base and an exponent exp, and calculate base**exp." I don't see why I should use a for loop here and not an if statement thanks susan

OpenStudy (rsmith6559):

Exponents are basically iterative multiplications. base**2 is the same as base * base. base**3 is the same as base * base * base. Since it's iterative, a loop to iterate through it is the normal choice.

OpenStudy (anonymous):

Thanks. Now I get it, they want me to avoid base**exp :-)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!