It repeatedly multiplies "power" by the value of "myFlt1".
The loop counts from 0 to myInt1 - 1, which is exactly myInt1 integers,
therefore the loop executes myInt1 times. Each time through it
multiplies power by myFlt1. Therefore the loop multiplies power by
myFlt1 myInt1 times.