Calculate the power of a given a base, exponent. Return the last n digit number.
Example 1: base = 3; expo = 8; n = 3; 3^8 = 6561 return the last 3 digit number 561.
Example 2: base = 3; expo = 10; n = 3; 3^10 = 59049 return the last 3 digit number 49.
- base, exponent and n are natural numbers
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers26
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5815 Solvers
-
The Answer to Life, the Universe, and Everything
587 Solvers
-
Replace multiples of 5 with NaN
472 Solvers
-
Determine the number of odd integers in a vector
846 Solvers
-
Who is the smartest MATLAB programmer?
793 Solvers
More from this Author6
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I think the third test case is wrong. Anyone else has problem??