Created
October 25, 2011 13:43
-
-
Save spiculator/1312767 to your computer and use it in GitHub Desktop.
power 10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int mypow10(int a) | |
{ | |
int a2 = a * a; | |
int a4 = a2 * a2; | |
int a5 = a4 * a; | |
return a5 * a5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment