mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
13 lines
196 B
C++
13 lines
196 B
C++
#include "AndroidMathUtility.h"
|
|
|
|
namespace AndroidMathUtility {
|
|
|
|
int Power(int number, int n) {
|
|
int result = number;
|
|
for(int i = 0; i < n - 1; i++) {
|
|
result *= number;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
}
|